/* Simple Cookie Banner CSS */
.scb-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.scb-cookie-content p {
    margin: 0 20px 0 0;
    /* Font will be inherited from the website */
}

.scb-accept-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: opacity 0.3s;
    /* Font will be inherited from the website */
}

.scb-accept-button:hover {
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scb-cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .scb-cookie-content p {
        margin-bottom: 15px;
    }
}