        :root {
            --primary-color: #4e73df;
            --secondary-color: #224abe;
            --background-color: #f4f6f9;
            --card-shadow: 0 12px 25px rgba(0,0,0,0.1);
        }

        body {
            background-color: var(--background-color);
            font-family: 'Inter', 'Arial', sans-serif;
            color: #333;
        }

        .container-violation {
            max-width: 1000px;
            margin: 50px auto;
            padding: 0 15px;
        }

        .card-violation {
            border: none;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .card-violation:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.12);
        }

        .card-header-custom {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-header-custom h3 {
            margin: 0;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .table-responsive {
            border-radius: 0 0 12px 12px;
            overflow: hidden;
        }

        .table-custom {
            margin-bottom: 0;
        }

        .table-custom thead {
            background-color: #f8f9fc;
            border-bottom: 2px solid var(--primary-color);
        }

        .table-custom tbody tr {
            transition: background-color 0.2s ease;
        }

        .table-custom tbody tr:hover {
            background-color: rgba(78, 115, 223, 0.05);
        }

        .btn-aktifkan {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 6px 12px;
            transition: all 0.3s ease;
            border-radius: 6px;
        }

        .btn-aktifkan:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .empty-state {
            text-align: center;
            padding: 60px;
            background-color: #f8f9fc;
        }

        .empty-state i {
            font-size: 4em;
            color: #28a745;
            margin-bottom: 20px;
        }