.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
}

.cookie-banner button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}

.cookie-banner button:hover {
    background-color: #45a049;
}