/* ==================== QUICK HELP STYLES ==================== */
/* Unified styles for quick help items with tooltip support */

/* Help list container */
.index-help-content {
    padding: 0;
}

.index-help-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Help item */
.index-help-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.index-help-item:last-child {
    border-bottom: none;
}

/* Hover effect with gradient background */
.index-help-item:hover {
    background: linear-gradient(90deg, rgba(24, 144, 255, 0.03) 0%, rgba(24, 144, 255, 0.06) 50%, rgba(24, 144, 255, 0.03) 100%);
    padding-left: 24px;
}

/* Icon */
.index-help-item i {
    font-size: 16px;
    color: #1890ff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.index-help-item:hover i {
    transform: scale(1.15);
}

/* Title text */
.index-help-item span {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.85);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Link style */
.index-help-item a {
    color: rgba(0, 0, 0, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.index-help-item a:hover {
    color: #1890ff;
}

/* Responsive design */
@media (max-width: 768px) {
    .index-help-item {
        padding: 10px 16px;
    }
    
    .index-help-item:hover {
        padding-left: 20px;
    }
}
