.unomi-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #056BFC;
    color: #fff;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.unomi-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.unomi-consent-text {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

.unomi-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.unomi-consent-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.unomi-consent-accept {
    background: #28a745;
    color: #fff;
}

.unomi-consent-accept:hover {
    background: #218838;
    transform: translateY(-1px);
}

.unomi-consent-reject {
    background: #dc3545;
    color: #fff;
}

.unomi-consent-reject:hover {
    background: #c82333;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .unomi-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .unomi-consent-actions {
        width: 100%;
        justify-content: center;
    }
    
    .unomi-consent-btn {
        flex: 1;
    }
}