/* GDPR Cookie Consent Popup Styles */
.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    background-color: #010810;
    color: #aecce7;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 14px;
    display: none;
}

.cookie-consent-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cookie-consent-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.cookie-consent-description {
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-consent-body {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.cookie-consent-options {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-details {
    flex: 2;
    min-width: 300px;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-category {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #1b4366;
    border-radius: 4px;
    background-color: rgba(27, 67, 102, 0.2);
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-category:hover {
    background-color: rgba(27, 67, 102, 0.4);
}

.cookie-category.active {
    background-color: rgba(27, 67, 102, 0.6);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    width: 100%;
}

.cookie-category-name {
    margin-left: 10px;
    font-weight: 500;
}

.cookie-category-required {
    margin-left: auto;
    font-size: 12px;
    color: #f29733;
}

.cookie-category-details {
    margin-top: 15px;
    display: none;
}

.cookie-category.expanded .cookie-category-details {
    display: block;
}

.cookie-detail {
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 13px;
}

.cookie-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.cookie-description {
    color: #6b91b4;
    font-size: 12px;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.cookie-consent-btn {
    padding: 8px 20px;
    border-radius: 4px;
    border: none;
    font-size: 14px;
    font-family: "Poppins", Arial, sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-consent-btn-secondary {
    background-color: transparent;
    border: 1px solid #aecce7;
    color: #aecce7;
}

.cookie-consent-btn-secondary:hover {
    background-color: rgba(174, 204, 231, 0.1);
}

.cookie-consent-btn-primary {
    background-color: #f29733;
    color: #010810;
}

.cookie-consent-btn-primary:hover {
    background-color: #c27929;
}

.cookie-consent-btn-tertiary {
    background-color: #1b4366;
    color: #aecce7;
}

.cookie-consent-btn-tertiary:hover {
    background-color: #2a5a85;
}

.cookie-consent-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-consent-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-consent-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1b4366;
    transition: 0.4s;
    border-radius: 24px;
}

.cookie-consent-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: #6b91b4;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-consent-slider {
    background-color: #f29733;
}

input:disabled + .cookie-consent-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

input:checked + .cookie-consent-slider:before {
    transform: translateX(16px);
    background-color: #fff;
}

.cookie-settings-toggle {
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-consent-body {
        flex-direction: column;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}
