/**
 * 文件管理组件样式
 */

/* 筛选表单样式 */
.filter-form {
  margin-bottom: 20px;
}

.filter-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-form-group {
  flex: 1;
  min-width: 200px;
}

.filter-label {
  margin-right: 5px;
}

.filter-size-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-size-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.size-input {
  width: 80px;
}

.filter-sort-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.filter-sort-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* 批量删除表单样式 */
.batch-delete-form {
  margin-bottom: 20px;
}

/* 自定义复选框样式 */
.custom-checkbox {
  cursor: pointer;
}

/* 文件名字样式 */
.file-name {
  margin-bottom: 5px;
}

/* 操作链接样式 */
.action-link {
  font-size: 12px;
  color: #007bff;
  text-decoration: none;
}

.action-link:hover {
  text-decoration: underline;
}

/* 操作按钮样式 */
.action-buttons {
  display: flex;
  gap: 5px;
}

/* 表格容器样式 */
.table-container {
  overflow-x: auto;
  margin-bottom: 20px;
}

/* 无数据状态 */
.no-data {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* 欢迎信息 */
.welcome-message {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

/* 内容区域 */
.content-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.content-section p {
  margin-bottom: 20px;
}

/* 删除表单样式 */
.delete-form {
  margin: 0;
}
