/* Cookie Consent Modal Styles */
.cookie-consent-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.6);
    max-width: 400px;
    width: 100%;
    padding: 24px;
    animation: slideUp 0.3s ease-out;
}

.cookie-consent-header {
    margin-bottom: 16px;
}

.cookie-consent-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--head-color, #151a1e);
    font-family: 'Roboto', sans-serif;
}

.cookie-consent-body {
    margin-bottom: 24px;
}

.cookie-consent-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color-normal, #555555);
    font-family: 'Roboto', sans-serif;
}

.cookie-consent-buttons {
    display: flex;
    /* gap: 12px; */
    justify-content: space-between;
}
    .cookie-consent-buttons > a {
        line-height: 42px;
    }

    .cookie-btn {
        padding: 12px 24px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        font-family: 'Roboto', sans-serif;
        transition: all 0.2s ease-in-out;
        min-width: 120px;
    }

.cookie-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-btn:active {
    transform: translateY(0);
}

.cookie-btn-accept {
    background-color: #1a3a5f;
    color: #ffffff;
}

.cookie-btn-accept:hover {
    background-color: var(--color-blue-hover, #5894A0);
}

.cookie-btn-reject {
    background-color: #f5f5f5;
    /*color: var(--text-color-normal, #555555);*/
    border: 1px solid var(--border-color, #E0E0E0);
}

.cookie-btn-reject:hover {
    background-color: #e8e8e8;
    border-color: #d0d0d0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-modal {
        padding: 10px;
    }

    .cookie-consent-content {
        padding: 20px;
        border-radius: 12px 12px 0 0;
    }

    .cookie-consent-header h3 {
        font-size: 18px;
    }

    .cookie-consent-body p {
        font-size: 13px;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

