body {
  background: linear-gradient(135deg, #e6f7ff 0%, #c6e6fb 100%);
  min-height: 100vh;
  padding: 20px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background 0.5s ease;
}

.app-main {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-top: 15px;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(180, 220, 255, 0.3);
}

.app-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.app-header {
  color: #2c6aa6;
  text-align: center;
  padding: 20px 0;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.search-container {
  margin-bottom: 25px;
}

.filter-controls {
  display: flex;
  gap: 15px;
  width: 100%;
}

.action-controls {
  display: flex;
  gap: 15px;
  justify-content: center;
  width: 100%;
}

/* 输入框和下拉菜单优化 */
.form-input {
  padding: 12px 15px; /* 增加内边距 */
  font-size: 1em; /* 增大字体 */
  border-radius: 8px; /* 更大圆角 */
  border: 1px solid #c0d9ff; /* 浅蓝色边框 */
  transition: all 0.3s ease; /* 平滑过渡 */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); /* 内阴影 */
}

.form-input:focus {
  border-color: #4da6ff; /* 聚焦时蓝色边框 */
  box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2); /* 蓝色光晕效果 */
}

/* 按钮优化 */
.btn {
  padding: 12px 20px; /* 增加内边距 */
  font-size: 1.05em; /* 增大字体 */
  border-radius: 8px; /* 更大圆角 */
  font-weight: 600; /* 加粗字体 */
  display: flex; /* 弹性布局 */
  align-items: center; /* 垂直居中 */
  justify-content: center; /* 水平居中 */
  gap: 8px; /* 图标和文字间距 */
  transition: all 0.25s ease; /* 平滑过渡 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.btn:hover {
  transform: translateY(-3px); /* 上浮效果 */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 加深阴影 */
}

.btn:active {
  transform: translateY(1px); /* 点击下沉效果 */
}

/* 添加按钮特殊样式 */
.btn-primary {
  background: linear-gradient(135deg, #4da6ff, #3385e0); /* 渐变背景 */
}

/* 清空按钮特殊样式 */
.btn-danger {
  background: linear-gradient(135deg, #ff6b6b, #e05555); /* 渐变背景 */
}
