.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00072D;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Ensure it's always on top */
    max-width: 90%;
    flex-wrap: wrap;
    text-align: center;
}

/* Responsive: Ensure it doesn’t overflow on small screens */
@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 8px;
    }
}

/* Link inside the cookie message */
.cookie-container a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
}

.cookie-container a:hover {
    text-decoration: none;
}

/* Accept & Reject Buttons */
.cookie-btn {
    background-color: #FFD700;
    color: #00072D;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background-color: #FFC107;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Reject Button */
.cookie-btn.reject {
    background-color: #ddd;
    color: #000;
}

.cookie-btn.reject:hover {
    background-color: #bbb;
}
