/* Ubest Float Contact Styles */
.ubest-fc-toolbar {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ubest-fc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    border: none;
    padding: 0;
}

.ubest-fc-btn svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.ubest-fc-email svg {
    fill: #0000ff;
}

.ubest-fc-btn:hover {
    transform: scale(1.1);
    z-index: 10;
}

.ubest-fc-back-top svg {
    fill: #333;
}

.ubest-fc-back-top:hover {
    background: #0000ff !important;
}

.ubest-fc-back-top:hover svg {
    fill: #fff;
}

/* Cookie Banner */
#ubest-fc-cookie-banner {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    color: #333;
}

.ubest-fc-cookie-btn {
    padding: 9px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.ubest-fc-btn-accept {
    background: #0052cc;
    color: #fff;
}

.ubest-fc-btn-accept:hover {
    background: #0047b3;
}

.ubest-fc-btn-outline {
    background: #f5f5f5;
    color: #333;
    border-color: #ccc;
}

.ubest-fc-btn-outline:hover {
    background: #e8e8e8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ubest-fc-toolbar {
        top: auto !important;
        bottom: 80px !important;
        transform: none !important;
    }
    
    #ubest-fc-cookie-banner {
        padding: 20px;
    }
    
    .ubest-fc-cookie-buttons {
        width: 100%;
        margin-top: 15px;
    }
    
    .ubest-fc-cookie-btn {
        flex: 1;
        text-align: center;
    }
}
