/* 添加SPA加载指示器样式 */
.spa-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

.spa-loading .spa-loader {
    display: block;
}

/* ICF Editor 特定样式 */
.iframe-container {
  min-height: 800px;
  position: relative;
}

.icf-editor-iframe {
  width: 100%;
  min-height: 800px;
  border: none;
  background: transparent;
}

/* 添加iframe加载指示器 */
.iframe-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.iframe-loader p {
  margin-top: 15px;
  font-size: 1.2rem;
  color: #3498db;
}

/* 修复弹窗显示问题 */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: translateY(0);
}

/* 主内容区滚动修复 */
.main-content {
  margin-top: 70px;
  margin-left: var(--sidebar-width);
  padding: 30px;
  transition: all 0.4s ease;
  overflow-y: auto;
  height: calc(100vh - 70px);
  position: relative;
  transition: transform 0.3s ease;
}

/* 其余样式保持不变 */
:root {
  --sidebar-width: 250px;
  --sidebar-collapsed-width: 60px;
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --dark-bg: #1a1f2d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: var(--text-color);
  min-height: 100vh;
  overflow-x: hidden;
}

/* 顶部导航栏 - 始终贴齐左侧 */
.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  padding: 0 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.brand {
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand i {
  color: var(--secondary-color);
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 25px;
  font-size: 1.1rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: white;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.language-selector {
  position: relative;
}

.language-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  width: 180px;
  overflow: hidden;
  display: none;
  z-index: 1001;
}

.language-dropdown.show {
  display: block;
}

.language-item {
  padding: 10px 15px;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.language-item:hover {
  background: var(--light-bg);
}

/* 侧边栏 */
.sidebar {
  position: fixed;
  top: 70px;
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - 70px);
  background: white;
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.08);
  z-index: 900;
  transition: all 0.4s ease;
  overflow-y: auto;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
}

.sidebar-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 910;
}

.sidebar-toggle:hover {
  background: #2980b9;
  transform: scale(1.1);
}

.sidebar.collapsed .sidebar-toggle {
  right: 15px;
}

.sidebar.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}

.sidebar-nav {
  list-style: none;
  padding: 20px 15px;
}

.sidebar-nav li {
  margin-bottom: 5px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sidebar-nav a:hover {
  background: var(--light-bg);
}

.sidebar-nav a.active {
  background: linear-gradient(90deg, rgba(52, 152, 219, 0.15), transparent);
  color: var(--secondary-color);
  font-weight: 600;
}

.sidebar-nav a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--secondary-color);
}

.sidebar-nav a i {
  font-size: 1.3rem;
  width: 30px;
  transition: all 0.3s ease;
}

.sidebar-nav a span {
  transition: all 0.3s ease;
  opacity: 1;
}

.sidebar.collapsed .sidebar-nav a span {
  opacity: 0;
  width: 0;
  position: absolute;
  left: 100%;
  white-space: nowrap;
  background: var(--dark-bg);
  padding: 12px 15px;
  border-radius: 0 8px 8px 0;
  color: white;
  pointer-events: none;
}

.sidebar.collapsed .sidebar-nav a:hover span {
  opacity: 1;
  left: var(--sidebar-collapsed-width);
  width: auto;
  pointer-events: auto;
}

.sidebar-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 20px 15px;
}

.sidebar-section-title {
  padding: 10px 15px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7f8c8d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar.collapsed .sidebar-section-title {
  justify-content: center;
  padding: 10px 5px;
}

.sidebar.collapsed .sidebar-section-title span {
  display: none;
}

/* 主内容区 - 修复后位置 */
.main-content.collapsed {
  margin-left: var(--sidebar-collapsed-width);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

.section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning {
  background: #fef3f2;
  border-left: 4px solid var(--accent-color);
  padding: 15px;
  margin-bottom: 25px;
  border-radius: 0 8px 8px 0;
}

.warning strong {
  color: var(--accent-color);
}

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

thead {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
  color: white;
}

th {
  padding: 15px 20px;
  text-align: left;
  font-weight: 500;
}

tbody tr {
  transition: all 0.3s ease;
}

tbody tr:nth-child(even) {
  background: #f8fafc;
}

tbody tr:hover {
  background: #e3f2fd;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

td a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

td a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.download-link:hover {
  background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* 页脚 */
footer {
  background: var(--dark-bg);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
  border-radius: 12px 12px 0 0;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .brand {
    font-size: 1.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
}

.language-selector {
  position: relative;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  width: 180px;
  overflow: hidden;
  display: none;
  z-index: 1001;
}

.language-dropdown.show {
  display: block;
}

.language-item {
  padding: 10px 15px;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.language-item:hover {
  background: var(--light-bg);
}

/* 弹窗样式 */
.modal.show {
  display: flex;
}

.modal-body {
  padding: 25px;
  line-height: 1.6;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body p {
  margin-bottom: 15px;
}

.modal-footer {
  padding: 15px 25px;
  background: #f8f9fa;
  text-align: right;
}

.btn-ok {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ok:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

/* 修复侧边栏收缩时图标显示问题 */
.sidebar.collapsed .sidebar-nav a {
  padding: 12px 10px;
  justify-content: center;
}

.sidebar.collapsed .sidebar-nav a i {
  margin: 0 auto;
  display: block;
}

.sidebar.collapsed .sidebar-divider {
  margin: 20px 10px;
}

.sidebar.collapsed .sidebar-section-title {
  padding: 10px 10px;
}

/* ======== 新增工具卡片样式 ======== */
.tools-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.tool-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  background: linear-gradient(135deg, #3498db, #2c3e50);
  color: white;
  font-size: 3rem;
}

.tool-content {
  padding: 25px;
}

.tool-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.tool-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.tool-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 0.9rem;
  color: #7f8c8d;
}

.tool-link {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* 导航链接特殊样式 */
.tool-link[data-page] {
  background: #27ae60;
}

.tool-link[data-page]:hover {
  background: #219653;
}

.tool-link:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.tool-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.search-box {
  position: relative;
  width: 300px;
}

.search-box input {
  width: 100%;
  padding: 10px 15px 10px 40px;
  border-radius: 50px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8c8d;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .tools-container {
    grid-template-columns: 1fr;
  }
  
  .tool-grid-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .search-box {
    width: 100%;
  }
}

html, body {
    height: 100%;
    overflow: hidden;
}

.main-content {
    height: calc(100vh - 60px);
    overflow-y: auto;
}

/* 优化加载动画 */
.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
}

/* ===== 新增公告栏样式 ===== */
.announcements-section {
  margin-bottom: 40px;
}

.announcements-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.announcement-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.announcement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #3498db;
}

.announcement-header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #f8fafc;
  border-bottom: 1px solid #eee;
}

.announcement-date {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.bg-primary {
  background-color: #3498db;
  color: white;
}

.bg-success {
  background-color: #27ae60;
  color: white;
}

.bg-info {
  background-color: #2980b9;
  color: white;
}

.announcement-title {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 15px 20px 10px;
  color: #2c3e50;
}

.announcement-preview {
  padding: 0 20px 15px;
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
}

.announcement-footer {
  padding: 15px 20px;
  border-top: 1px solid #f1f1f1;
  background: #fafafa;
}

.more-link {
  color: #3498db;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.announcement-card:hover .more-link {
  color: #2980b9;
  gap: 8px;
}

/* ===== 新增弹窗标题样式 ===== */
.modal-header {
  background: linear-gradient(135deg, var(--dark-bg), var(--primary-color));
  color: white;
  padding: 15px 40px 15px 25px; /* 添加右侧内边距给关闭按钮留空间 */
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  position: relative; /* 为关闭按钮定位提供参考 */
}

.modal-header h3 {
  font-weight: 600;
  font-size: 1.5rem;
}

/* 修复关闭按钮样式 - 透明背景的X */
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent !important; /* 确保背景透明 */
  border: none;
  color: white;
  font-size: 1.8rem;
  opacity: 0.8;
  transition: all 0.2s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0; /* 移除内边距 */
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.2);
  background: transparent !important; /* 悬停时保持透明 */
  color: #f8f9fa; /* 悬停时变浅灰色 */
}

/* 新增公告详情弹窗内容样式 */
.announcement-content {
  padding: 25px;
  line-height: 1.8;
}

.announcement-content h4 {
  margin-top: 20px;
  color: var(--primary-color);
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.announcement-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.announcement-content li {
  margin-bottom: 8px;
}

.announcement-content a {
  color: #3498db;
  text-decoration: none;
}

.announcement-content a:hover {
  text-decoration: underline;
}

/* 移动端侧边栏修复 */
@media (max-width: 992px) {
  .sidebar-toggle {
    display: none !important;
  }
  
  body.mobile-sidebar-open .main-content {
    transform: translateX(var(--sidebar-width));
  }
  
  body.mobile-sidebar-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 899;
    animation: fadeIn 0.3s forwards;
    pointer-events: auto;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  body.mobile-sidebar-open {
    overflow: hidden;
  }
  
  .sidebar {
    width: 250px;
    transform: translateX(-100%);
    z-index: 900;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
  }
  
  .sidebar.show {
    transform: translateX(0);
  }
}

/* 在 datacenter.css 文件末尾添加 */
@media (max-width: 768px) {
  /* 顶部导航栏调整 */
  .top-navbar {
    padding: 0 15px;
  }
  
  .brand {
    font-size: 1.4rem;
  }
  
  /* 主内容区调整 */
  .main-content {
    padding: 15px;
  }
  
  /* 公告卡片修复 */
  .announcements-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .announcement-card {
    width: 95%;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section {
    padding: 15px;
  }
  
  /* 工具卡片调整 */
  .tools-container {
    grid-template-columns: 1fr;
  }
  
  .tool-card {
    max-width: 100%;
  }
  
  /* 搜索框调整 */
  .search-box {
    width: 100%;
  }
  
  /* 表格调整 */
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  table {
    min-width: 600px;
  }
}

/* 修复移动端侧边栏滚动问题 */
@media (max-width: 992px) {
  .sidebar {
    overflow-y: auto; /* 确保可以滚动 */
    -webkit-overflow-scrolling: touch; /* iOS平滑滚动 */
  }
  
  /* 确保底部内容有足够空间 */
  .sidebar-nav:last-child {
    margin-bottom: 50px;
  }
  
  /* 防止底部内容被遮挡 */
  .sidebar::after {
    content: '';
    display: block;
    height: 30px;
  }
}

/* ===== 新增公告列表样式 ===== */
.announcements-list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.announcement-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #3498db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.announcement-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.announcement-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.announcement-item-date {
  color: #7f8c8d;
  font-size: 0.9rem;
  margin-right: 15px;
}

.announcement-item-title {
  font-weight: 600;
  color: #2c3e50;
}

.announcement-item-preview {
  color: #666;
  line-height: 1.5;
}

/* 公告列表项标签间距 */
.announcement-item-header .badge {
  margin-right: 12px !important;
}

/* 优化公告列表项布局 */
.announcement-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.announcement-item-date {
  min-width: 90px; /* 确保日期有足够空间 */
}

/* 移动端优化 */
@media (max-width: 768px) {
  .announcement-item-header {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .announcement-item-header .badge {
    margin-right: 8px !important;
  }
}

/* 添加返回按钮样式 */
.back-button {
  display: inline-flex;
  align-items: center;
  background: #3498db;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-bottom: 20px;
}

.back-button:hover {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.back-button i {
  margin-right: 8px;
}

/* icfe帮助弹窗样式 */
.btn-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.icf-help-content h4 {
  margin-top: 20px;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.icf-help-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.icf-help-content li {
  margin-bottom: 10px;
}

.icf-help-content p {
  margin-bottom: 15px;
  line-height: 1.6;
}