#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none; /* Hidden by default */
    font-family: sans-serif;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

#cookie-banner-content {
    flex-grow: 1;
    margin-right: 20px;
    margin-bottom: 10px; /* Add margin for smaller screens */
}

#cookie-banner-text {
    margin: 0;
    font-size: 14px;
}

#cookie-banner-text a {
    color: #3498db;
    text-decoration: underline;
}

#cookie-banner-actions {
    display: flex;
    align-items: center;
}

.cookie-banner-btn {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

#cookie-accept-btn {
    background-color: #27ae60;
    color: white;
}

#cookie-accept-btn:hover {
    background-color: #2ecc71;
}

#cookie-decline-btn {
    background-color: #c0392b;
    color: white;
}

#cookie-decline-btn:hover {
    background-color: #e74c3c;
}

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

    #cookie-banner-content {
        margin-right: 0;
        margin-bottom: 15px;
    }

    #cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner-btn {
        flex-grow: 1;
        margin: 0 5px;
    }
}
