
.consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    border: 2px solid #15284b;
    border-radius: 8px;
    padding: 20px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.consent-content h3 {
    color: #15284b;
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.consent-content p {
    color: #15284b;
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

.consent-content a {
    color: #15284b;
    text-decoration: underline;
}

.consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.consent-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.consent-btn-accept {
    background: #15284b;
    color: #fff;
}

.consent-btn-accept:hover {
    background: #0f1f36;
}

.consent-btn-customize {
    background: #fff;
    color: #15284b;
    border: 1px solid #15284b;
}

.consent-btn-customize:hover {
    background: #f0f0f0;
}

.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.consent-modal-content h3 {
    color: #15284b;
    margin: 0 0 20px 0;
    font-size: 20px;
}

.consent-categories {
    margin-bottom: 20px;
}

.consent-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.consent-category label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.consent-category input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.consent-category strong {
    color: #15284b;
    font-size: 16px;
}

.consent-category p {
    margin: 0;
    color: #666;
    font-size: 14px;
    margin-left: 26px;
}

.consent-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@media (max-width: 480px) {
    .consent-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .consent-buttons {
        flex-direction: column;
    }

    .consent-btn {
        width: 100%;
    }

    .consent-modal-content {
        margin: 20px;
        width: auto;
    }

    .consent-modal-buttons {
        flex-direction: column;
    }
}
