    .mobile-form-toggle {
        display: none;
        width: 100%;
        background: linear-gradient(to right, #4a7c3a, #5a9c46);
        color: white;
        border: none;
        padding: 14px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        margin-bottom: 20px;
        transition: all 0.3s ease;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .mobile-form-toggle:hover {
        background: linear-gradient(to right, #5a9c46, #4a7c3a);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(74, 124, 58, 0.3);
    }
    
    .mobile-form-toggle i {
        transition: transform 0.3s ease;
    }
    
    .mobile-form-toggle.rotated i {
        transform: rotate(180deg);
    }
    
    .verification-section {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .verification-form-container, .verification-result-container {
        flex: 1;
        min-width: 0;
        box-sizing: border-box;
        width: 100%;
    }
    
    .verification-form-container h2, .verification-result-container h2 {
        color: #4a7c3a;
        margin-bottom: 15px;
        font-size: 1.4rem;
        position: relative;
        padding-bottom: 8px;
    }
    
    .verification-form-container h2::after, .verification-result-container h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: #4a7c3a;
    }
    
    .verification-form {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #4a7c3a;
        animation: fadeIn 0.8s ease-out;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #4a7c3a;
        font-size: 0.95rem;
    }
    
    .form-group input {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-size: 1rem;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }
    
    .form-group input:focus {
        outline: none;
        border-color: #4a7c3a;
        box-shadow: 0 0 0 3px rgba(74, 124, 58, 0.1);
    }
    
    .form-group input::placeholder {
        color: #aaa;
        font-size: 0.95rem;
    }
    
    .verify-btn {
        background: linear-gradient(to right, #4a7c3a, #5a9c46);
        color: white;
        border: none;
        padding: 14px 20px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 10px;
    }
    
    .verify-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(74, 124, 58, 0.3);
        background: linear-gradient(to right, #5a9c46, #4a7c3a);
    }
    
    .verify-btn:active {
        transform: translateY(-1px);
    }
    
    .verify-btn i {
        font-size: 1rem;
    }
    
    .parent-id-toggle {
        display: flex;
        margin-bottom: 12px;
        border-radius: 6px;
        overflow: hidden;
        border: 2px solid #4a7c3a;
        width: 100%;
    }
    
    .toggle-option {
        flex: 1;
        text-align: center;
        padding: 10px 5px;
        background-color: #f0f0f0;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #666;
        font-size: 0.9rem;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .toggle-option.active {
        background-color: #4a7c3a;
        color: white;
    }
    
    .toggle-option:not(.active):hover {
        background-color: #e0e0e0;
    }
    
    .parent-input-group {
        position: relative;
        width: 100%;
    }
    
    .parent-input {
        display: none;
        width: 100%;
    }
    
    .parent-input.active {
        display: block;
    }
    
    .info-tooltip {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: #4a7c3a;
        cursor: help;
        z-index: 2;
    }
    
    .info-text {
        display: none;
        position: absolute;
        background-color: white;
        border: 1px solid #4a7c3a;
        padding: 10px;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 10;
        width: 200px;
        top: -10px;
        right: -210px;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .info-tooltip:hover .info-text {
        display: block;
    }
    
    .verification-result {
        background-color: white;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #e0e0e0;
        animation: fadeIn 0.8s ease-out;
        min-height: 250px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    
    .result-placeholder {
        color: #888;
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .result-placeholder i {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #ddd;
    }
    
    .result-success {
        border-left-color: #4CAF50;
    }
    
    .result-error {
        border-left-color: #f44336;
    }
    
    .result-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }
    
    .result-success .result-icon {
        color: #4CAF50;
    }
    
    .result-error .result-icon {
        color: #f44336;
    }
    
    .result-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
        line-height: 1.3;
    }
    
    .result-details {
        width: 100%;
        text-align: left;
        margin-top: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .detail-row {
        display: flex;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        min-width: min-content;
    }
    
    .detail-label {
        font-weight: 600;
        color: #555;
        min-width: 130px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .detail-value {
        color: #333;
        font-size: 0.95rem;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .privacy-notice {
        background-color: #f0f9ff;
        border-radius: 6px;
        padding: 12px;
        margin-top: 15px;
        border-left: 3px solid #4a7c3a;
        font-size: 0.85rem;
        color: #555;
        width: 100%;
        box-sizing: border-box;
    }
    
    .privacy-notice i {
        color: #4a7c3a;
        margin-right: 6px;
        font-size: 0.9rem;
    }
    
    .asterisk-name {
        letter-spacing: 1px;
        font-family: monospace;
        font-size: 1rem;
        word-break: break-all;
    }
    
    .instructions {
        background-color: #f9f9f9;
        border-radius: 10px;
        padding: 20px;
        margin-top: 20px;
        border-left: 4px solid #4a7c3a;
        width: 100%;
        box-sizing: border-box;
    }
    
    .instructions h3 {
        color: #4a7c3a;
        margin-bottom: 12px;
        font-size: 1.2rem;
    }
    
    .instructions ul {
        padding-left: 18px;
        color: #555;
        font-size: 0.95rem;
    }
    
    .instructions li {
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .instructions code {
        background-color: #e8f4e8;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.85rem;
        word-break: break-all;
        display: inline-block;
        max-width: 100%;
        overflow-x: auto;
    }
    
    .footer {
        background-color: #4a7c3a;
        color: white;
        text-align: center;
        padding: 20px 15px;
        margin-top: 40px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .footer-logo {
        height: 35px;
        margin-bottom: 12px;
        opacity: 0.9;
        max-width: 100%;
    }
    
    .footer-content {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
    }
    
    .footer a {
        color: #d4ffc7;
        text-decoration: none;
        transition: color 0.3s;
        word-break: break-all;
    }
    
    .footer a:hover {
        color: white;
        text-decoration: underline;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .loading-spinner {
        display: inline-block;
        width: 35px;
        height: 35px;
        border: 3px solid rgba(74, 124, 58, 0.2);
        border-radius: 50%;
        border-top-color: #4a7c3a;
        animation: spin 1s ease-in-out infinite;
        margin-bottom: 15px;
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
        .verification-section {
            gap: 25px;
        }
        
        .detail-label {
            min-width: 120px;
        }
    }
    
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        
        .nav-links {
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background-color: rgba(74, 124, 58, 0.98);
            flex-direction: column;
            padding: 15px;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 999;
        }
        
        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-link {
            justify-content: center;
            padding: 12px;
            font-size: 1rem;
        }
        
        .logo {
            height: 60px;
        }
        
        .school-title h1 {
            font-size: 1.6rem;
        }
        
        .school-title p {
            font-size: 0.95rem;
        }
        
        .mobile-form-toggle {
            display: flex;
        }
        
        .verification-form-container {
            display: none;
            margin-bottom: 20px;
        }
        
        .verification-form-container.show-on-mobile {
            display: block;
        }
        
        .verification-section {
            flex-direction: column;
            gap: 20px;
        }
        
        .verification-result-container {
            width: 100%;
        }
        
        .verification-result-container h2 {
            font-size: 1.3rem;
        }
        
        .info-text {
            right: 0;
            top: 35px;
            width: 180px;
            font-size: 0.8rem;
        }
        
        .detail-row {
            flex-direction: column;
            padding: 8px 0;
        }
        
        .detail-label {
            min-width: auto;
            margin-bottom: 3px;
            font-size: 0.85rem;
        }
        
        .detail-value {
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 0 10px;
        }
        
        .nav-logo {
            height: 35px;
        }
        
        .header {
            padding: 25px 10px;
        }
        
        .logo {
            height: 55px;
        }
        
        .school-title h1 {
            font-size: 1.4rem;
        }
        
        .school-title p {
            font-size: 0.9rem;
        }
        
        .main-container {
            padding: 0 10px;
        }
        
        .verification-form-container h2, .verification-result-container h2 {
            font-size: 1.2rem;
        }
        
        .verification-form, .verification-result {
            padding: 15px;
        }
        
        .form-group input {
            padding: 10px;
            font-size: 0.95rem;
        }
        
        .toggle-option {
            font-size: 0.85rem;
            padding: 8px 4px;
        }
        
        .verify-btn {
            padding: 12px 15px;
            font-size: 0.95rem;
        }
        
        .result-title {
            font-size: 1.3rem;
        }
        
        .result-icon {
            font-size: 2.5rem;
        }
        
        .footer {
            padding: 15px 10px;
            font-size: 0.85rem;
        }
        
        .footer-logo {
            height: 30px;
        }
    }
    
    @media (max-width: 360px) {
        .school-title h1 {
            font-size: 1.3rem;
        }
        
        .toggle-option {
            font-size: 0.8rem;
            padding: 8px 3px;
        }
        
        .verification-form-container h2, .verification-result-container h2 {
            font-size: 1.1rem;
        }
    }
