/**
 * Agent Hub Floating Button Styles
 */

.agent-hub-floating-btn {
    position: fixed;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    padding: 7px 15px 15px 18px;
    border-radius: 0px 0px 15px 15px;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Minimal Style */
.agent-hub-style-minimal {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #d1d5db;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transform: rotate(270deg);
    font-size: 16px;
}

.agent-hub-style-minimal:hover {
    background: #e5e7eb;
    box-shadow: 0 4px 12px rgb(0 0 0 / 46%);
    transform: rotate(270deg) scale(1.02);
    color: #f98ab8;
}

.agent-hub-floating-btn i {
    font-size: 20px;
}

.agent-hub-floating-btn span {
    display: inline-block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .agent-hub-floating-btn {
        left: 15px;
        padding: 12px 16px;
        font-size: 13px;
        display: none !important;
    }
    
    .agent-hub-floating-btn i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .agent-hub-floating-btn {
        left: 10px;
        padding: 10px 14px;
        font-size: 12px;
        display: none !important;
    }
    
    .agent-hub-floating-btn i {
        font-size: 16px;
    }
}
