﻿.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 450px;
    width: calc(100% - 2rem);
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(7, 84, 218, 0.18);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    z-index: 9999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.cookie-banner p {
    margin: 0;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.4;
    width: 100%;
}

.cookie-banner button {
    appearance: none;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;

    background-color: #0754DA;
    color: #ffffff;
    width: 100%;
}

.cookie-banner button:hover {
    background-color: #0648bb;
}
