:root {
    --primary-orange: #FF4500;
    --dark-orange: #FF8C00;
    --light-orange: #FFA07A;
    --background: #FFF5F0;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --dark-primary: #000000;
    --modal-bg: rgba(0, 0, 0, 0.7);
    --success-green: #4CAF50;
    --warning-yellow: #ff9800;
    --error-red: #f44336;
    --info-blue: #2196F3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 800px;
    animation: fadeIn 0.8s ease;
}

.screen {
    display: none;
    animation: fadeIn 0.5s ease;
}

.screen.active {
    display: block;
    animation: slideIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.glass {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(15px) saturate(180%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
}

/* Welcome Screen Styles */
#welcome-screen {
    text-align: center;
    color: var(--text-light);
}

.logo-container {
    margin-bottom: 30px;
    animation: bounce 2s infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.animated-logo {
    width: 150px;
    height: 150px;
    animation: modernPulse 3s ease-in-out infinite; /* ← Change to modern pulse only */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    will-change: transform;
}

@keyframes modernPulse {
    0% { 
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
    25% {
        transform: scale(1.1);
        filter: drop-shadow(0 8px 25px rgba(255, 69, 0, 0.4));
    }
    50% {
        transform: scale(0.95);
        filter: drop-shadow(0 5px 20px rgba(255, 140, 0, 0.5));
    }
    75% {
        transform: scale(1.08);
        filter: drop-shadow(0 7px 22px rgba(255, 69, 0, 0.45));
    }
    100% { 
        transform: scale(1);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    }
}

.welcome-message h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fff, #ffe6d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.law-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 500;
    opacity: 0.9;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

.copyright {
    margin-top: 50px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Form Styles */
.form-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 25px;
    text-align: center;
    gap: 15px;
}

.form-header img.form-logo {
    width: 80px;
    height: 80px;
    animation: pulse 3s infinite;
}

.form-header h2 {
    font-size: 1.9rem;
    color: var(--primary-orange);
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

h3 {
    color: var(--primary-orange);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 69, 0, 0.2);
    font-size: 1.5rem;
}

h3 i {
    margin-right: 10px;
}

.form-section {
    display: none;
    animation: fadeIn 0.5s ease;
    flex-grow: 1;
    flex-direction: column;
}

.form-section.active {
    display: flex;
}

.form-group {
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(15px);
    animation: slideUp 0.5s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-orange);
    margin-right: 8px;
    width: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.15);
    background: white;
}

.form-control:disabled {
    background-color: #f9f9f9;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-text {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #777;
}

.email-note {
    color: var(--primary-orange);
    font-weight: 500;
}

.form-buttons-container {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Law Message Styles */
.law-message {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.9), rgba(255, 140, 0, 0.9));
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.law-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.law-message .law-header {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.law-message .law-description {
    margin: 8px 0 0;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    min-height: 50px;
}

.start-button-glare {
    background: var(--dark-primary);
    color: white;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    padding: 16px 40px;
    min-width: 250px;
}

.start-button-glare:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.start-button-glare::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.start-button-glare:hover::after {
    left: 100%;
}

.start-button-glare:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.4);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 69, 0, 0.1);
    transform: translateY(-2px);
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.btn-small {
    padding: 9px 18px;
    font-size: 0.85rem;
    min-height: 40px;
}

/* Session Scheduling Styles */
.schedule-container {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    max-height: 450px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) #f0f0f0;
}

.schedule-container::-webkit-scrollbar {
    width: 8px;
}

.schedule-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.schedule-container::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.schedule-option {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    background: white;
}

.schedule-option:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.15);
}

.schedule-option.selected {
    border-color: var(--primary-orange);
    background: linear-gradient(to right, rgba(255, 69, 0, 0.05), rgba(255, 140, 0, 0.05));
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.2);
}

.schedule-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}

.schedule-details {
    flex: 1;
    min-width: 250px;
}

.schedule-details h4 {
    color: var(--primary-orange);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.schedule-details p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.schedule-details p strong {
    color: #444;
    min-width: 100px;
}

.schedule-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.fee-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Teacher Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--modal-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.teacher-modal {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .teacher-modal {
    transform: translateY(0) scale(1);
}

.teacher-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 25px;
}

.teacher-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.teacher-name {
    font-size: 1.7rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.teacher-title {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
}

.teacher-intro {
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-orange);
    color: white;
    transform: rotate(90deg);
}

/* Success Screen Styles */
#success-screen {
    text-align: center;
}

.success-container {
    max-width: 550px;
    margin: 0 auto;
    animation: successAppear 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successAppear {
    0% { 
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-green), #45a049);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4); }
    100% { transform: scale(1); box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3); }
}

.success-message {
    margin: 25px 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
}

.reference-number {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 140, 0, 0.08));
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px dashed rgba(255, 69, 0, 0.3);
}

.reference-number p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

#ref-number {
    color: var(--primary-orange);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.success-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.success-buttons .btn-primary,
.success-buttons .btn-secondary {
    flex: 1;
    max-width: 220px;
    min-height: 55px;
}

/* Review Section Styles */
.review-summary {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) #f0f0f0;
}

.review-summary::-webkit-scrollbar {
    width: 8px;
}

.review-summary::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.review-summary::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.review-value {
    color: #666;
    text-align: right;
    flex: 1;
    padding-left: 20px;
}

.review-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 69, 0, 0.1);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.review-section h4 {
    color: var(--primary-orange);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-orange);
    font-size: 1.3rem;
}

/* Loading and Error States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.field-error {
    color: var(--error-red);
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group.error .form-control {
    border-color: var(--error-red);
    background: rgba(244, 67, 54, 0.05);
}

.form-group.error label {
    color: var(--error-red);
}

.hidden {
    display: none !important;
}

/* Loading Spinner */
.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid var(--primary-orange);
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

.spinner.large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.loading-message p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 69, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 69, 0, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-orange);
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

/* Radio Button Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
}

.radio-option:hover {
    border-color: var(--primary-orange);
    background: rgba(255, 69, 0, 0.03);
}

.radio-option.selected {
    border-color: var(--primary-orange);
    background: linear-gradient(to right, rgba(255, 69, 0, 0.05), rgba(255, 140, 0, 0.05));
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-orange);
    flex-shrink: 0;
}

/* Form group animation delays */
.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }
.form-group:nth-child(10) { animation-delay: 1.0s; }

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    
    .glass {
        padding: 25px 20px;
    }
    
    .welcome-message h1 {
        font-size: 2.2rem;
    }
    
    .law-text {
        font-size: 1.1rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header img.form-logo {
        width: 70px;
        height: 70px;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .schedule-info {
        flex-direction: column;
        align-items: stretch;
    }
    
    .schedule-details {
        min-width: 100%;
    }
    
    .teacher-modal {
        width: 95%;
        padding: 25px 20px;
    }
    
    .teacher-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .teacher-avatar {
        width: 80px;
        height: 80px;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-buttons .btn-primary,
    .success-buttons .btn-secondary {
        max-width: 100%;
    }
    
    #ref-number {
        font-size: 1.8rem;
    }
    
    .review-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .review-value {
        text-align: left;
        padding-left: 0;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .welcome-message h1 {
        font-size: 1.9rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .law-message .law-header {
        font-size: 1rem;
    }
    
    .teacher-modal {
        padding: 20px 15px;
    }
    
    .form-control {
        padding: 12px 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .reference-number {
        padding: 20px 15px;
    }
    
    #ref-number {
        font-size: 1.6rem;
    }
    
    .checkbox-group {
        padding: 12px;
    }
    
    .checkbox-group label {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .screen:not(.active) {
        display: none !important;
    }
    
    .success-container {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .success-buttons {
        display: none !important;
    }
    
    .law-message {
        break-inside: avoid;
    }
}