﻿.cookie-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 38, 135, 0.9); /* Slight transparency for depth */
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    padding: 20px 25px;
    font-size: 14px;
    z-index: 9999;
    animation: fadeInUp 0.6s ease;
    max-width: 900px;
    margin: 0 auto;
    color: #f5f7fa;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-text p {
    margin: 0;
    color: #dce3f5; /* Softer light blue-gray for readability */
}

.cookie-more-link {
    color: #ffcc00;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

    .cookie-more-link:hover {
        color: #ffd633;
        border-bottom: 1px solid #ffd633;
    }

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cookie-btn {
    background-color: #ffcc00;
    color: #002687;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

    .cookie-btn:hover {
        background-color: #ffd633;
        transform: translateY(-1px);
    }

.cookie-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
}

    .cookie-link:hover {
        background-color: #ffcc00;
        color: #002687;
        border-color: #ffcc00;
    }

/* Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-btn {
        margin-top: 8px;
        align-self: flex-end;
    }
}
