#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0a5a77;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.cookie-text {
    font-size: 14px;
    flex: 1;
    min-width: 200px;
}

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

.cookie-btn {
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: #fff;
}

.cookie-btn.decline {
    background: #f44336;
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}