/* 月挽清风的管理后台 - 样式文件 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
  background-color: #f4f5f7;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 40px;
}

/* ========== 登录页面样式 ========== */
.login-body {
  background: linear-gradient(135deg, #fb7299 0%, #f093fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  position: relative;
}

.login-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.15"/><circle cx="20" cy="60" r="0.5" fill="white" opacity="0.15"/><circle cx="80" cy="30" r="0.5" fill="white" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.login-container {
  width: 100%;
  max-width: 400px;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.login-header h1 {
  font-size: 32px;
  background: linear-gradient(135deg, #fb7299 0%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-weight: 700;
}

.login-header p {
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 35px;
  font-weight: 500;
}

.login-form {
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-weight: 600;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
  outline: none;
  border-color: #fb7299;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(251, 114, 153, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #fb7299 0%, #f093fb 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: 0 4px 15px rgba(251, 114, 153, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251, 114, 153, 0.4);
}

.login-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: none;
}

.login-footer {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  font-size: 13px;
  color: #9ca3af;
}

.version {
  margin-top: 5px;
}

/* ========== 主页面样式 ========== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.header {
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fb7299;
  position: relative;
}

.header h1:before,
.header h1:after {
  content: '----------';
  color: #fb7299;
  position: relative;
  top: -3px;
  margin: 0 15px;
  font-size: 20px;
}

.header p {
  font-size: 16px;
  color: #666;
}

.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.panel {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.panel h2 {
  color: #fb7299;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

/* 歌单管理面板 */
.songlist-management {
  grid-column: 1 / -1;
  margin-top: 30px;
}

.songlist-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
  flex-wrap: wrap;
}

.search-filter-group {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 300px;
}

.search-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
}

.search-input:focus {
  outline: none;
  border-color: #fb7299;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  min-width: 120px;
}

.filter-select:focus {
  outline: none;
  border-color: #fb7299;
}

.btn-refresh {
  background: #00ccff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-refresh:hover {
  background: #00b3e6;
  transform: translateY(-1px);
}

.btn-add {
  background: #fb7299;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add:hover {
  background: #e85d8b;
  transform: translateY(-1px);
}

.songlist-table {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}

.songlist-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.songlist-table th {
  background: #fafafa;
  padding: 12px 10px;
  text-align: center;
  border-bottom: 2px solid #e8e8e8;
  font-weight: bold;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 1;
}

.songlist-table th:first-child {
  text-align: left;
}

.songlist-table td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.songlist-table tr:hover {
  background: #f8f9ff;
}

.song-name-cell {
  padding: 10px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.singer-cell {
  padding: 10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.type-cell {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.actions-cell {
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

/* 类型标签样式 */
.type-badge.ancient {
  background-color: rgba(0, 204, 255, 0.1);
  color: #00ccff;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
}

.type-badge.pop {
  background-color: rgba(255, 102, 0, 0.1);
  color: #ff6600;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
}

.type-badge.retro {
  background-color: rgba(204, 153, 255, 0.1);
  color: #cc99ff;
  border-radius: 4px;
  padding: 2px 8px;
  display: inline-block;
}

.char-count-cell {
  text-align: center;
  color: #999;
  font-size: 12px;
}

.time-cell {
  color: #999;
  font-size: 12px;
  white-space: nowrap;
}

/* 按钮样式 */
.btn {
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  margin-right: 8px;
}

.btn-edit {
  background: #ff9800;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.btn-edit:hover {
  background: #f57c00;
  transform: translateY(-1px);
}

.btn-approve {
  background-color: #27ae60;
  color: white;
}

.btn-approve:hover {
  background-color: #2ecc71;
}

.btn-reject {
  background: #e74c3c;
  color: white;
}

.btn-reject:hover {
  background: #c0392b;
}

.btn-delete {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.btn-delete:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

.btn-disabled {
  background-color: #bdc3c7;
  color: white;
  cursor: not-allowed;
}

/* 新增歌曲面板样式 */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #555;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #fb7299;
  box-shadow: 0 0 0 3px rgba(251, 114, 153, 0.1);
}

.btn-primary {
  background: #fb7299;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e85d8b;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(251, 114, 153, 0.3);
}

/* 消息提示样式 */
.message {
  padding: 12px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 14px;
  font-weight: bold;
}

.message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* 加载状态 */
.loading {
  text-align: center;
  padding: 20px;
  color: #666;
  font-style: italic;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #fb7299;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 数据统计卡片 */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #fb7299;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

/* 特殊统计卡片颜色 */
.stat-card:nth-child(1) .stat-number {
  color: #f39c12; /* 待审批 - 橙色 */
}

.stat-card:nth-child(2) .stat-number {
  color: #27ae60; /* 学习中 - 绿色 */
}

.stat-card:nth-child(3) .stat-number {
  color: #e74c3c; /* 已拒绝 - 红色 */
}

.stat-card:nth-child(4) .stat-number {
  color: #00ccff; /* 歌单总数 - 蓝色（古风色） */
}

/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 15px 0;
}

.pagination-info {
  margin-right: 15px;
  font-size: 14px;
  color: #666;
}

.pagination-btn {
  padding: 6px 12px;
  border: 1px solid #e0e0e0;
  background: white;
  color: #333;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 32px;
  text-align: center;
}

.pagination-btn:hover:not(.disabled) {
  background: #fb7299;
  color: white;
  border-color: #fb7299;
}

.pagination-btn.active {
  background: #fb7299;
  color: white;
  border-color: #fb7299;
}

.pagination-btn.disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  border-color: #e8e8e8;
}

.pagination-ellipsis {
  padding: 6px 4px;
  color: #999;
  font-size: 14px;
}

/* 审批完成列表面板 */
.approval-completed-panel {
  grid-column: 1 / -1;
  margin-top: 30px;
}

/* 审批完成表格样式 */
.approval-completed-table {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.approval-completed-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.approval-completed-table th {
  background: #fafafa;
  padding: 12px 10px;
  text-align: center;
  border-bottom: 2px solid #e8e8e8;
  font-weight: bold;
  color: #333;
  position: sticky;
  top: 0;
  z-index: 1;
}

.approval-completed-table th:first-child {
  text-align: left;
}

.approval-completed-table td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  text-align: center;
}

.approval-completed-table td:first-child {
  text-align: left;
}

.approval-commiter-cell {
  text-align: center;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.approval-status-cell {
  text-align: center;
}

.approval-time-cell {
  color: #999;
  font-size: 12px;
  white-space: nowrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .container {
    padding: 15px;
    max-width: 100%;
  }
  
  .panel {
    padding: 20px;
  }
  
  .approval-actions {
    justify-content: center;
  }
  
  .song-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .stats-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .header h1:before,
  .header h1:after {
    content: '------';
    font-size: 16px;
    margin: 0 10px;
  }
  
  .songlist-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .search-filter-group {
    min-width: auto;
  }
  
  .modal-content {
    margin: 5% auto;
    width: 95%;
  }
  
  .songlist-table {
    font-size: 12px;
  }
  
  .songlist-table th,
  .songlist-table td {
    padding: 8px 5px;
  }
  
  .pagination {
    gap: 4px;
  }
  
  .pagination-btn {
    padding: 4px 8px;
    font-size: 12px;
    min-width: 28px;
  }
  
  .pagination-info {
    font-size: 12px;
    margin-right: 8px;
  }
  
  .approval-completed-table {
    font-size: 12px;
  }
  
  .approval-completed-table th,
  .approval-completed-table td {
    padding: 8px 5px;
  }
}

/* 上传歌单部分 */
.upload-section {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.upload-section h3 {
  color: #fb7299;
  margin-bottom: 10px;
  font-size: 16px;
}

.upload-info {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.file-upload-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.btn-upload {
  background: #fb7299;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-upload:hover {
  background: #e05d8b;
  transform: translateY(-1px);
}

.upload-result {
  margin-top: 10px;
  min-height: 20px;
}

.upload-options {
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkbox-text {
  margin-left: 5px;
  font-size: 14px;
  color: #555;
}

.warning-text {
  color: #ff3860;
  font-weight: 500;
}

/* B站风格确认对话框 */
.bili-dialog-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.bili-dialog {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  width: 400px;
  max-width: 90%;
  overflow: hidden;
  animation: bili-dialog-in 0.3s ease;
}

@keyframes bili-dialog-in {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bili-dialog-title {
  padding: 20px 20px 10px;
  font-size: 18px;
  font-weight: bold;
  color: #18191c;
}

.bili-dialog-content {
  padding: 10px 20px;
  color: #61666d;
  font-size: 14px;
  line-height: 1.5;
}

.bili-dialog-icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 20px;
}

.bili-dialog-actions {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px 20px;
  gap: 10px;
}

.bili-btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.bili-btn-cancel {
  background-color: #f4f5f7;
  color: #505050;
}

.bili-btn-cancel:hover {
  background-color: #e3e5e7;
}

.bili-btn-primary {
  background-color: #fb7299;
  color: white;
}

.bili-btn-primary:hover {
  background-color: #fc8bab;
}

.bili-btn-warning {
  background-color: #f39c12;
  color: white;
}

.bili-btn-warning:hover {
  background-color: #e67e22;
}

.bili-btn-danger {
  background-color: #f45a8d;
  color: white;
}

.bili-btn-danger:hover {
  background-color: #f56c9a;
}

/* 状态标签样式 */
.status-badge {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  min-width: 60px;
}

.status-badge.pending {
  background-color: rgba(243, 156, 18, 0.15);
  color: #f39c12;
}

.status-badge.approved, .status-badge.learning {
  background-color: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}

.status-badge.rejected {
  background-color: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.status-badge.whitelist {
  background-color: rgba(39, 174, 96, 0.15);
  color: #27ae60;
}

.status-badge.blacklist {
  background-color: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

/* 表格单元格统一样式 */
.songlist-table td, .approval-completed-table td {
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
  text-align: center;
}

.songlist-table td:first-child, .approval-completed-table td:first-child {
  text-align: left;
}

/* 编辑模态框 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.modal-title {
  color: #fb7299;
  font-size: 18px;
  font-weight: bold;
}

.close {
  color: #999;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover {
  color: #666;
}

.modal-form .form-group {
  margin-bottom: 15px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.btn-cancel {
  background: #bdc3c7;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel:hover {
  background: #95a5a6;
}

.btn-save {
  background: #fb7299;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-save:hover {
  background: #e85d8b;
}

/* 审批面板样式 */
.approval-panel {
  max-height: 60vh;
  overflow-y: auto;
}

.approval-item {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.2s ease;
}

.approval-item:hover {
  box-shadow: 0 4px 12px rgba(251, 114, 153, 0.1);
  transform: translateY(-2px);
}

.approval-item.pending {
  border-left: 4px solid #f39c12;
}

.approval-item.learning {
  border-left: 4px solid #27ae60;
  background: #f0fff4;
}

.approval-item.rejected {
  border-left: 4px solid #e74c3c;
  background: #fff5f5;
}

.approval-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.song-info {
  flex: 1;
}

.song-title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-bottom: 4px;
}

.song-meta {
  font-size: 13px;
  color: #666;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.approval-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* 系统配置样式 */
.config-form {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.config-section {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.config-section h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #ddd;
}

.input-with-desc {
  display: flex;
  align-items: center;
  gap: 15px;
}

.input-with-desc input {
  width: 120px;
  flex-shrink: 0;
}

.input-desc {
  color: #666;
  font-size: 13px;
  font-style: italic;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}