
        :root {
            --primary-color: #00897b;
            --primary-light: #4ebaaa;
            --primary-dark: #005b4f;
            --accent-color: #ff6e40;
            --text-primary: #212121;
            --text-secondary: #757575;
            --border-color: #e0e0e0;
            --background-light: #f9f9f9;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            height: 100%;
        }
        
        body {
            background-color: #f8f9fa;
            display: flex;
            min-height: 100vh;
            flex-direction: column;
            font-family: 'Poppins', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
        }
        
        main {
            flex: 1 0 auto;
            padding: 40px 0;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        header {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
            z-index: 10;
        }
        
        nav {
            height: 72px;
            line-height: 72px;
            background-color: var(--primary-color);
        }
        
        nav .brand-logo {
            font-weight: 500;
            font-size: 1.6rem;
            padding-left: 15px;
        }
        
        .page-title {
            margin-top: 0;
            margin-bottom: 40px;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 2.5rem;
            text-align: center;
            letter-spacing: -0.5px;
        }
        
        .card {
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            margin: 24px 0;
            border: none;
            overflow: hidden;
        }
        
        .card .card-content {
            padding: 32px;
        }
        
        .card-title {
            font-weight: 600 !important;
            font-size: 1.5rem !important;
            margin-bottom: 20px !important;
            color: var(--primary-color);
        }
        
        .input-field {
            margin-top: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .input-field label {
            color: var(--text-secondary);
            font-weight: 500;
        }
        
        .input-field input[type=text]:focus + label,
        .input-field input[type=number]:focus + label,
        .input-field input[type=password]:focus + label {
            color: var(--primary-color) !important;
        }
        
        .input-field input[type=text]:focus,
        .input-field input[type=number]:focus,
        .input-field input[type=password]:focus {
            border-bottom: 2px solid var(--primary-color) !important;
            box-shadow: 0 1px 0 0 var(--primary-color) !important;
        }
        
        .input-field input[type=text],
        .input-field input[type=number],
        .input-field input[type=password] {
            font-size: 1.1rem;
            height: 3rem;
        }
        
        .input-field .prefix {
            font-size: 1.6rem;
            top: 0.7rem;
        }
        
        .input-field .prefix.active {
            color: var(--primary-color);
        }
        
        .helper-text {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin-top: 4px;
        }
        
        .btn-large {
            height: 56px;
            line-height: 56px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: none;
            letter-spacing: 0.5px;
            padding: 0 32px;
            box-shadow: 0 4px 10px rgba(0, 139, 123, 0.2);
            transition: all 0.3s ease;
        }
        
        .btn-large:hover {
            box-shadow: 0 6px 15px rgba(0, 139, 123, 0.3);
            transform: translateY(-2px);
        }
        
        .btn, .btn-large, .btn-flat {
            text-transform: none;
            border-radius: 8px;
        }
        
        .btn i.material-icons, 
        .btn-large i.material-icons {
            vertical-align: middle;
            margin-right: 8px;
            font-size: 1.3rem;
        }
        
        .announcement-notification {
            background-color: #fff3e0;
            color: #e65100;
            padding: 18px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 500;
            font-size: 1.1rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #ff9800;
        }
        
        .divider {
            height: 2px;
            margin: 15px 0 25px;
            background-color: var(--primary-light);
            opacity: 0.2;
        }
        
        .result-card {
            transition: all 0.3s ease;
        }
        
        table.highlight {
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            margin: 30px 0;
        }
        
        table.highlight thead th {
            background-color: var(--background-light);
            padding: 16px 12px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 1rem;
        }
        
        table.highlight tbody td {
            padding: 16px 12px;
            border-top: 1px solid var(--border-color);
            font-size: 1.05rem;
        }
        
        table.highlight>tbody>tr:hover {
            background-color: rgba(0, 137, 123, 0.05);
        }
        
        .result-lulus {
            color: #00897b;
            font-weight: 700;
        }
        
        .result-tidak-lulus {
            color: #d32f2f;
            font-weight: 700;
        }
        
        .result-box {
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .result-box.lulus {
            background-color: rgba(0, 137, 123, 0.08);
            border: 2px solid #00897b;
        }
        
        .result-box.tidak-lulus {
            background-color: rgba(211, 47, 47, 0.08);
            border: 2px solid #d32f2f;
        }
        
        .result-box h4 {
            font-size: 2.2rem;
            margin: 10px 0;
            letter-spacing: 1px;
        }
        
        .center-align p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 8px 0;
        }
        
        .fade-enter {
            opacity: 0;
            animation: fade-in 0.5s forwards;
        }
        
        .scale-in {
            animation: scale-in 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        @keyframes fade-in {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes scale-in {
            from { transform: scale(0.92); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        
        footer.page-footer {
            background-color: var(--primary-color);
            margin-top: 60px;
            padding-top: 0;
        }
        
        footer .footer-copyright {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 16px 0;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        *:focus {
            outline: none;
        }
        
        button:focus, 
        a:focus, 
        input:focus, 
        select:focus {
            box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.25);
        }
        
        .info-icon {
            vertical-align: middle;
            margin-right: 8px;
            font-size: 1.8rem;
        }
        
        .error-container {
            text-align: center;
            padding: 20px;
        }
        
        .error-container i {
            font-size: 64px;
            margin-bottom: 15px;
            display: block;
            color: #d32f2f;
        }
        
        .error-container h5 {
            color: #d32f2f;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .waiting-container {
            text-align: center;
            padding: 30px 20px;
        }
        
        .waiting-container i {
            font-size: 64px;
            margin-bottom: 15px;
            display: block;
            color: var(--primary-color);
        }
        
        .waiting-container h5 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        ::-webkit-scrollbar {
            width: 10px;
            height: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-light);
            border-radius: 10px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        .search-form-container {
            background-color: white;
            border-radius: 12px;
            padding: 20px 30px 30px;
            box-shadow: var(--card-shadow);
            max-width: 600px;
            margin: 0 auto;
        }
        
        @media only screen and (max-width: 992px) {
            .page-title {
                font-size: 2.2rem;
                margin-bottom: 30px;
            }
            
            .btn-large {
                height: 52px;
                line-height: 52px;
            }
            
            .card .card-content {
                padding: 24px;
            }
        }
        
        @media only screen and (max-width: 600px) {
            .container {
                width: 95%;
            }
            
            main {
                padding: 25px 0;
            }
            
            .page-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            
            .card .card-content {
                padding: 20px;
            }
            
            .btn-large {
                height: 50px;
                line-height: 50px;
                font-size: 0.95rem;
            }
            
            nav .brand-logo {
                font-size: 1.3rem;
            }
            
            .announcement-notification {
                font-size: 0.95rem;
                padding: 15px;
            }
            
            .result-box {
                padding: 20px 15px;
            }
            
            .result-box h4 {
                font-size: 2rem;
            }
            
            table.highlight tbody td {
                padding: 12px 8px;
                font-size: 0.95rem;
            }
            
            .center-align p {
                font-size: 1rem;
            }
        }
.student-data-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.student-data-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.student-data-label {
    width: 30%;
    font-weight: 600;
    color: var(--primary-color, #26a69a);
}

.student-data-separator {
    width: 5%;
}

.student-data-value {
    flex: 1;
}

/* Tampilan responsif untuk mobile */
@media only screen and (max-width: 600px) {
    .student-data-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }
    
    .student-data-label {
        width: 100%;
        margin-bottom: 4px;
    }
    
    .student-data-separator {
        display: none;
    }
    
    .student-data-value {
        width: 100%;
        padding-left: 10px;
    }
}