.privacy-checkbox a {
    color: #ff8562;
  text-decoration: none;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-weight: bold;
    font-size: 18px;
}

.footer-center {
    text-align: center;
}

.footer-right a {
    color: #fff !important;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    footer {
        flex-direction: column;
    }
}

/*
 * popup
 */
 
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999999;
    justify-content: center;
    align-items: center;
}

.privacy-popup {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 800px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.privacy-popup h2 {
    margin: 0;
    padding: 20px;
    color: #333;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #777;
    background: none;
    border: none;
}

.close-btn:hover {
    color: #333;
}

.privacy-iframe {
    border: none;
    flex-grow: 1;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.privacy-link {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .privacy-popup {
        width: 95%;
        height: 90vh;
    }
}
