
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s;
}

.cookie-banner-accept {
    background: #4CAF50;
    color: white;
}

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

.cookie-banner-decline {
    background: #f44336;
    color: white;
}

.cookie-banner-decline:hover {
    background: #da190b;
}

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner-text {
        margin-right: 0;
        margin-bottom: 15px;
        min-width: 100%;
    }
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    .cookie-banner-btn {
        width: 100%;
        text-align: center;
    }
}
