/* 社群页面独立样式 */

/* 主布局 */
.community-main {
  display: flex;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  background: #f5f7fa;
}

/* 左侧边栏 */
.community-sidebar {
  width: 260px;
  background: #fff;
  border-right: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: calc(100vh - 70px);
  left: 0;
  top: 70px;
  z-index: 100;
}

.sidebar-header {
  padding: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar-header h2 {
  font-size: 1.5rem;
  color: #1a3a2a;
  margin-bottom: 8px;
}

.sidebar-header p {
  font-size: 0.85rem;
  color: #888;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  background: #f0f7f4;
  color: #1a3a2a;
}

.sidebar-link.active {
  background: #1a3a2a;
  color: #fff;
}

.sidebar-icon {
  font-size: 1.2rem;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid #e8e8e8;
}

.community-stats {
  display: flex;
  justify-content: space-around;
}

.community-stats .stat-item {
  text-align: center;
}

.community-stats .stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a3a2a;
}

.community-stats .stat-label {
  font-size: 0.75rem;
  color: #888;
}

/* 右侧内容区 */
.community-content {
  flex: 1;
  margin-left: 260px;
  padding: 24px;
  max-width: calc(100% - 260px);
}

.content-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.content-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title {
  font-size: 1.5rem;
  color: #1a3a2a;
  font-weight: 600;
}

/* 按钮样式 */
.btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: #1a3a2a;
  color: #fff;
}

.btn-primary:hover {
  background: #2d5a45;
}

.btn-secondary {
  background: #e8e8e8;
  color: #555;
}

.btn-secondary:hover {
  background: #d0d0d0;
}

.btn-small {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-success {
  background: #52c41a;
  color: #fff;
}

.btn-success:hover {
  background: #389e0d;
}

.btn-danger {
  background: #ff4d4f;
  color: #fff;
}

.btn-danger:hover {
  background: #cf1322;
}

/* ========== 交流广场 ========== */
.topic-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tag {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag:hover, .tag.active {
  background: #1a3a2a;
  color: #fff;
  border-color: #1a3a2a;
}

/* 帖子列表 */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.post-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.post-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-author {
  font-weight: 600;
  color: #1a3a2a;
}

.post-badge {
  font-size: 0.7rem;
  background: #ffd666;
  color: #874d00;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

.post-time {
  font-size: 0.8rem;
  color: #888;
}

.post-tag {
  padding: 4px 12px;
  background: #f0f7f4;
  color: #1a3a2a;
  border-radius: 12px;
  font-size: 0.75rem;
}

.post-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.post-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.post-images img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.post-actions {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.action-btn:hover {
  color: #1a3a2a;
}

.like-btn.liked {
  color: #ff4d4f;
}

.like-btn.liked svg {
  fill: #ff4d4f;
  stroke: #ff4d4f;
}

/* ========== 个人主页 ========== */
.profile-container {
  max-width: 800px;
}

.profile-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #1a3a2a;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 1.3rem;
  color: #1a3a2a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.role-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.role-badge.admin {
  background: #ff4d4f;
  color: #fff;
}

.role-badge.user {
  background: #1890ff;
  color: #fff;
}

.profile-id, .profile-time {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 4px;
}

/* 待办事项 */
.todo-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.todo-title {
  font-size: 1.1rem;
  color: #1a3a2a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.todo-icon {
  font-size: 1.2rem;
}

.todo-count {
  background: #ff4d4f;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: auto;
}

.todo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.todo-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;
  transition: all 0.3s ease;
}

.todo-card:hover {
  border-color: #1a3a2a;
  box-shadow: 0 2px 8px rgba(26,58,42,0.1);
}

.todo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.todo-type {
  font-weight: 600;
  color: #1a3a2a;
}

.todo-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.todo-status.pending {
  background: #fff7e6;
  color: #d46b08;
}

.todo-status.approved {
  background: #f6ffed;
  color: #389e0d;
}

.todo-status.rejected {
  background: #fff2f0;
  color: #cf1322;
}

.todo-content p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.todo-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.todo-actions .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.todo-result {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
}

.todo-result.approved {
  color: #52c41a;
  background: #f6ffed;
}

.todo-result.rejected {
  color: #ff4d4f;
  background: #fff2f0;
}

/* 拒绝原因选择 */
.reject-reason-form {
  width: 100%;
}

.reject-select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 0.85rem;
  background: #fff;
}

.reject-custom {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  font-size: 0.85rem;
  resize: vertical;
  min-height: 60px;
}

.reject-actions {
  display: flex;
  gap: 8px;
}

.reject-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reject-reason-text {
  font-size: 0.8rem;
  color: #666;
  background: #fff2f0;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 3px solid #ff4d4f;
}

/* 志愿者详情下拉 */
.volunteer-detail {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f8f9fa;
  border-top: 1px solid #e8e8e8;
}

.volunteer-card.expanded {
  border-color: #1a3a2a;
}

.detail-section {
  margin-bottom: 16px;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-section h5 {
  font-size: 1rem;
  color: #1a3a2a;
  margin-bottom: 8px;
  font-weight: 600;
}

.detail-section p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

.detail-section ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.detail-section li {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 4px;
}

/* 文献上传状态 */
.upload-status-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #1a3a2a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-icon {
  font-size: 1.2rem;
}

.upload-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.upload-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;
  border-left: 4px solid #d9d9d9;
}

.upload-card.approved {
  border-left-color: #52c41a;
}

.upload-card.rejected {
  border-left-color: #ff4d4f;
}

.upload-card.pending {
  border-left-color: #faad14;
}

.upload-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.upload-title {
  font-weight: 600;
  color: #1a3a2a;
}

.upload-status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.upload-status-badge.approved {
  background: #f6ffed;
  color: #389e0d;
}

.upload-status-badge.rejected {
  background: #fff2f0;
  color: #cf1322;
}

.upload-status-badge.pending {
  background: #fffbe6;
  color: #d46b08;
}

.upload-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #888;
}

.upload-reason {
  margin-top: 10px;
  padding: 10px;
  background: #fff2f0;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #cf1322;
}

/* 统计卡片 */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a3a2a;
}

.stat-label {
  font-size: 0.85rem;
  color: #888;
}

/* 角色切换 */
.role-switch {
  margin-top: 24px;
  padding: 16px;
  background: #f0f7f4;
  border-radius: 10px;
  text-align: center;
}

.role-switch p {
  margin-bottom: 12px;
  color: #555;
}

.role-switch .btn {
  margin: 0 8px;
}

/* ========== 近期活动 ========== */
.activity-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: #1a3a2a;
  color: #fff;
  border-color: #1a3a2a;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-card-large {
  background: #fff;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
}

.activity-image-wrap {
  width: 300px;
  height: 220px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.activity-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.activity-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.activity-status.upcoming {
  background: #1890ff;
  color: #fff;
}

.activity-status.ongoing {
  background: #52c41a;
  color: #fff;
}

.activity-status.past {
  background: #8c8c8c;
  color: #fff;
}

.activity-content {
  flex: 1;
  padding: 24px;
  display: flex;
  gap: 20px;
  min-height: 0;
}

.activity-date {
  text-align: center;
  min-width: 60px;
}

.date-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a3a2a;
  line-height: 1;
}

.date-month {
  font-size: 0.9rem;
  color: #888;
}

.activity-info {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.activity-title {
  font-size: 1.2rem;
  color: #1a3a2a;
  margin-bottom: 10px;
}

.activity-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  overflow: visible;
  display: block;
}

/* 活动详情下拉展开 */
.activity-detail-expand {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: all 0.4s ease;
  background: #f8f9fa;
  border-radius: 8px;
  margin-top: 16px;
}

.activity-card-large.expanded .activity-detail-expand {
  max-height: 800px;
  padding: 20px 24px;
  opacity: 1;
}

.activity-detail-expand .detail-section {
  margin-bottom: 20px;
}

.activity-detail-expand .detail-section:last-child {
  margin-bottom: 0;
}

.activity-detail-expand h5 {
  font-size: 1rem;
  color: #1a3a2a;
  margin-bottom: 10px;
  font-weight: 600;
}

.activity-detail-expand p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.activity-detail-expand ul {
  padding-left: 20px;
  list-style: disc;
}

.activity-detail-expand li {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.activity-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.activity-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #888;
}

.activity-actions {
  display: flex;
  gap: 12px;
}

/* ========== 弹窗样式 ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e8e8e8;
}

.modal-header h3 {
  font-size: 1.2rem;
  color: #1a3a2a;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}

.modal-body {
  padding: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #555;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #1a3a2a;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e8e8e8;
}

.image-upload {
  border: 2px dashed #d9d9d9;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
}

/* ========== 志愿者专区 ========== */
.volunteer-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.subsection-title {
  font-size: 1.1rem;
  color: #1a3a2a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.subsection-icon {
  font-size: 1.2rem;
}

.volunteer-badge {
  background: #ff4d4f;
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-left: auto;
}

.volunteer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.volunteer-card {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.volunteer-card:hover {
  border-color: #1a3a2a;
  box-shadow: 0 4px 12px rgba(26,58,42,0.1);
}

.volunteer-image {
  width: 200px;
  position: relative;
  flex-shrink: 0;
}

.volunteer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volunteer-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #1890ff;
  color: #fff;
}

.volunteer-status.ongoing {
  background: #52c41a;
}

.volunteer-info {
  flex: 1;
  padding: 20px;
}

.volunteer-info h4 {
  font-size: 1.1rem;
  color: #1a3a2a;
  margin-bottom: 8px;
}

.volunteer-desc {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.volunteer-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.volunteer-meta span {
  font-size: 0.85rem;
  color: #555;
}

.volunteer-requirements {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 16px;
  padding: 10px;
  background: #f5f7fa;
  border-radius: 6px;
}

.volunteer-actions {
  display: flex;
  gap: 12px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .community-sidebar {
    width: 200px;
  }
  
  .community-content {
    margin-left: 200px;
    max-width: calc(100% - 200px);
  }
  
  .activity-card-large {
    flex-direction: column;
  }
  
  .activity-image-wrap {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .community-sidebar {
    display: none;
  }
  
  .community-content {
    margin-left: 0;
    max-width: 100%;
    padding: 16px;
  }
  
  .post-images {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .activity-content {
    flex-direction: column;
    gap: 12px;
  }
  
  .activity-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  
  .date-day {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .post-images {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .todo-actions {
    flex-wrap: wrap;
  }
  
  .activity-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== 评论区域 ========== */
.comments-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.comments-list {
  margin-bottom: 12px;
}

.no-comments {
  text-align: center;
  color: #888;
  padding: 20px;
  font-size: 0.9rem;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-weight: 600;
  color: #1a3a2a;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}

.comment-content p {
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.comment-time {
  font-size: 0.75rem;
  color: #999;
}

.comment-input {
  display: flex;
  gap: 12px;
  align-items: center;
}

.comment-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.comment-input input:focus {
  border-color: #1a3a2a;
}

.comment-input button {
  padding: 10px 20px;
  background: #1a3a2a;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.comment-input button:hover {
  background: #2d5a42;
}

/* ========== 加载状态 ========== */
.loading-posts {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 0.95rem;
}

.loading-posts::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  border: 3px solid #e8e8e8;
  border-top-color: #1a3a2a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #888;
  font-size: 0.95rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.load-error {
  text-align: center;
  padding: 40px 20px;
  color: #ff4d4f;
  font-size: 0.95rem;
  background: #fff2f0;
  border-radius: 12px;
}
