.privacy-content {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.6;
}

.consent-container {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background-color: #e3f2fd;
    border-radius: 10px;
    border-left: 4px solid #2196F3;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 5px;
    transform: scale(1.3);
    cursor: pointer;
}

.consent-checkbox label {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.btn-container {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-container .btn {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 25px;
}

.back-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    border: none;
    color: white;
}

.back-btn:hover {
    background: linear-gradient(135deg, #5a6268, #343a40);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.accept-btn:disabled {
    background: #dee2e6 !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

.accept-btn:not(:disabled) {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.privacy-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.privacy-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-header p {
    color: #6c757d;
    font-size: 16px;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.highlight-box h6 {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

@media (max-width: 576px) {
    .btn-container {
        flex-direction: column;
    }

    .privacy-content {
        max-height: 400px;
        font-size: 13px;
        padding: 15px;
    }

    .consent-container {
        padding: 20px 15px;
    }

    .consent-checkbox {
        padding: 15px;
        gap: 12px;
    }

    .consent-checkbox label {
        font-size: 14px;
    }
}

/* PWA specific styles for Affan theme */
.page-content-wrapper {
    padding-top: 10px;
}

/* Smooth scroll for privacy content */
.privacy-content {
    scroll-behavior: smooth;
}

.privacy-content::-webkit-scrollbar {
    width: 6px;
}

.privacy-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.privacy-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.privacy-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}
