/* Support Hours Pro - Cloudhive alignment */
.sh-status-indicator {
    display: inline-flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px dashed #dbe4f0 !important;
    background: none !important;
}

.sh-label {
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.sh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}

.sh-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: sh-pulse 2s infinite;
}

.sh-status-online .sh-dot, .sh-status-online .sh-dot::after { background-color: #16a34a; }
.sh-status-online .sh-label { color: #15803d; }

.sh-status-offline .sh-dot, .sh-status-offline .sh-dot::after { background-color: #ef4444; }
.sh-status-offline .sh-label { color: #dc2626; }

.sh-time {
    font-size: 12px !important;
    color: #60788f !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
}

.sh-info-icon {
    width: 16px !important;
    height: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #8aa0b7 !important;
    flex: 0 0 16px !important;
}

.sh-info-icon svg {
    width: 14px !important;
    height: 14px !important;
}

.ch-submit-ticket-option .sh-status-indicator {
    grid-column: 2 / 4 !important;
}

@keyframes sh-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
