.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #212529;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

.cookie-text {
    font-size: 14px;
    margin: 0;
}

.btn-accept-cookie {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    font-size: 14px;
}

.btn-accept-cookie:hover {
    background-color: #0056b3;
}