.cookie-alert {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    background: #f9f9f9;
    color: #222;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-size: 15px;
    gap: 16px;
}

.cookie-alert p {
    margin: 0;
    flex: 1;
}

.cookie-alert a {
    color: #0056b3;
    font-weight: 500;
    text-decoration: underline;
}

.cookie-button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cookie-button:hover {
    background-color: #004095;
}
