* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.auth-box {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.auth-header {
  text-align: center;
  margin-bottom: 30px;
}
.auth-header h1 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}
.auth-header p {
  color: #666;
  font-size: 14px;
}
.auth-tabs {
  display: flex;
  margin-bottom: 25px;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 4px;
}
.auth-tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s;
}
.auth-tab.active {
  background: white;
  color: #667eea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: #667eea;
}
.btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 18px;
  display: none;
  font-size: 14px;
}
.message.success { background: #d4edda; color: #155724; display: block; }
.message.error { background: #f8d7da; color: #721c24; display: block; }
.auth-form { display: none; }
.auth-form.active { display: block; }

/* Dashboard Styles */
.dashboard {
  display: none;
  min-height: 100vh;
  background: #f5f7fa;
}
.dashboard.active { display: block; }
.sidebar {
  width: 250px;
  background: white;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  z-index: 100;
}
.sidebar-header {
  padding: 25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}
.sidebar-header h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.sidebar-header p {
  font-size: 12px;
  opacity: 0.9;
}
.nav-menu {
  padding: 20px 0;
}
.nav-item {
  padding: 14px 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  transition: all 0.3s;
}
.nav-item:hover, .nav-item.active {
  background: #f0f4ff;
  color: #667eea;
  border-right: 3px solid #667eea;
}
.nav-item span { font-size: 18px; }
.main-content {
  margin-left: 250px;
  padding: 30px;
}
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.main-header h1 {
  font-size: 28px;
  color: #333;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.user-info .username {
  font-weight: 600;
  color: #333;
}
.user-info .role {
  padding: 4px 12px;
  background: #667eea;
  color: white;
  border-radius: 12px;
  font-size: 12px;
}
.logout-btn {
  padding: 8px 20px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.stats-grid.stats-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1400px) {
  .stats-grid.stats-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1100px) {
  .stats-grid.stats-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 800px) {
  .stats-grid.stats-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .stats-grid.stats-grid-5 {
    grid-template-columns: 1fr;
  }
}
.stat-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.stat-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}
.stat-card .stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}
.stat-card .stat-label {
  color: #666;
  font-size: 14px;
}
.stat-card.blue .icon { background: #e3f2fd; }
.stat-card.green .icon { background: #e8f5e9; }
.stat-card.orange .icon { background: #fff3e0; }
.stat-card.purple .icon { background: #f3e5f5; }
.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}
.card h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.software-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.software-card {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s;
}
.software-card:hover {
  border-color: #667eea;
  transform: translateY(-3px);
}
.software-card h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
.software-card .software-info {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.software-card .software-info div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #666;
  flex-wrap: wrap;
}
.software-card .software-info .key-tag {
  background: #e7f3ff;
  color: #0066cc;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 11px;
}
.software-card .status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}
.software-card .status.online {
  background: #d4edda;
  color: #155724;
}
.software-card .status.offline {
  background: #f8d7da;
  color: #721c24;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}
.table th {
  background: #f8f9fa;
  color: #555;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.table td {
  font-size: 14px;
  color: #333;
}
.software-table tbody tr:hover {
  background: #f8f9fa;
}
.software-table td {
  vertical-align: middle;
}
.software-table .copy-btn {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.software-table .copy-btn:hover {
  background: #e7f3ff;
}
.software-table .reset-btn {
  background: none;
  border: none;
  color: #fa8c16;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.software-table .reset-btn:hover {
  background: #fff7e6;
}
.software-table .action-btn {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid;
  margin-right: 5px;
  background: white;
  transition: all 0.2s;
}
.software-table .action-btn.edit {
  color: #667eea;
  border-color: #667eea;
}
.software-table .action-btn.edit:hover {
  background: #667eea;
  color: white;
}
.software-table .action-btn.delete {
  color: #dc3545;
  border-color: #dc3545;
}
.software-table .action-btn.delete:hover {
  background: #dc3545;
  color: white;
}
.software-table .action-btn.copy {
  color: #28a745;
  border-color: #28a745;
}
.software-table .action-btn.copy:hover {
  background: #28a745;
  color: white;
}
.badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}
.badge.unused { background: #d4edda; color: #155724; }
.badge.used { background: #fff3cd; color: #856404; }
.badge.expired { background: #f8d7da; color: #721c24; }
.page { display: none; }
.page.active { display: block; }

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active { display: flex; align-items: center; }
.modal {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}
.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
}
.modal-close:hover { color: #333; }
.modal-body {
  padding: 20px;
}
.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #e9ecef;
  display: flex;
  justify-content: flex-end;
}

/* Ant Design Form Styles */
.ant-form {
  width: 100%;
}
.ant-form-item {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}
.ant-form-item-label {
  width: 140px;
  text-align: right;
  padding-right: 15px;
  padding-top: 8px;
  flex-shrink: 0;
}
.ant-form-item-label label {
  font-size: 14px;
  color: #000000d9;
  display: block;
}
.ant-form-item-required::before {
  content: '*';
  color: #ff4d4f;
  margin-right: 4px;
}
.ant-form-item-control {
  flex: 1;
}
.ant-input {
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
}
.ant-input:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.ant-input select {
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.ant-input-number {
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
}

/* Ant Switch */
.ant-switch {
  width: 44px;
  height: 22px;
  background: #d9d9d9;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.36s;
  outline: none;
}
.ant-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: all 0.36s;
}
.ant-switch-checked {
  background: #1890ff;
}
.ant-switch-checked::after {
  left: 22px;
}
.ant-switch-inner {
  display: none;
}

/* Question Icon */
.question-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  text-align: center;
  line-height: 14px;
  font-size: 10px;
  color: #999;
  margin-left: 4px;
  cursor: help;
}

/* Ant Collapse */
.ant-collapse {
  border: 1px solid #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}
.ant-collapse-item {
  border-bottom: none;
}
.ant-collapse-header {
  padding: 12px 16px;
  background: #fafafa;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.ant-collapse-arrow {
  font-size: 12px;
  transition: transform 0.24s;
}
.ant-collapse-arrow.active {
  transform: rotate(90deg);
}
.ant-collapse-content {
  display: none;
}
.ant-collapse-content.active {
  display: block;
}
.ant-collapse-content-box {
  padding: 16px;
}

/* Ant Checkbox Group */
.ant-checkbox-group {
  display: flex;
  gap: 15px;
}
.ant-checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #000000d9;
}
.ant-checkbox {
  display: inline-block;
  position: relative;
  margin-right: 8px;
}
.ant-checkbox-input {
  position: absolute;
  opacity: 0;
}
.ant-checkbox-inner {
  width: 16px;
  height: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: white;
  display: inline-block;
}
.ant-checkbox-checked .ant-checkbox-inner {
  background: #1890ff;
  border-color: #1890ff;
}
.ant-checkbox-checked .ant-checkbox-inner::after {
  content: '✓';
  position: absolute;
  color: white;
  font-size: 12px;
  top: 1px;
  left: 3px;
}
.form-row {
  display: flex;
  margin-bottom: 15px;
}
.form-row .form-label {
  width: 120px;
  padding-top: 12px;
  font-weight: 500;
  color: #333;
}
.form-row .form-input {
  flex: 1;
}
.collapse {
  border: 1px solid #e9ecef;
  border-radius: 6px;
  overflow: hidden;
}
.collapse-header {
  padding: 12px 15px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.collapse-header:hover { background: #e9ecef; }
.collapse-content {
  padding: 15px;
  display: none;
  background: white;
}
.collapse-content.active { display: block; }
.collapse-arrow {
  transition: transform 0.3s;
}
.collapse-arrow.active { transform: rotate(90deg); }
.switch {
  width: 44px;
  height: 22px;
  background: #d9d9d9;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.switch.on { background: #52c41a; }
.switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: left 0.3s;
}
.switch.on::after { left: 24px; }
.input-number {
  width: 100px;
  padding: 6px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}

/* API Docs Styles */
.api-docs-container {
  display: flex;
  gap: 20px;
  min-height: calc(100vh - 200px);
}
.api-docs-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: fit-content;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.api-docs-nav {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
}
.api-nav-section {
  margin-bottom: 15px;
}
.api-nav-title {
  font-weight: 600;
  color: #333;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 5px;
}
.api-nav-item {
  padding: 8px 12px;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.2s;
}
.api-nav-item:hover {
  background: #e6f7ff;
  color: #1890ff;
}
.api-nav-item.active {
  background: #1890ff;
  color: white;
}
.api-docs-content {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 20px 30px;
  overflow-y: auto;
}
.api-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.api-section:last-child {
  border-bottom: none;
}
.api-section h2 {
  color: #1890ff;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1890ff;
}
.api-section h3 {
  color: #333;
  font-size: 16px;
  margin: 20px 0 15px;
}
.api-section h4 {
  color: #666;
  font-size: 14px;
  margin: 15px 0 10px;
}
.api-method {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
}
.api-method.get { background: #61affe; color: white; }
.api-method.post { background: #49cc90; color: white; }
.api-method.put { background: #fca130; color: white; }
.api-method.delete { background: #f93e3e; color: white; }
.api-url {
  background: #f5f5f5;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 13px;
}
.api-auth-badge {
  background: #722ed1;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  margin-left: 8px;
}
.api-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}
.api-table td {
  padding: 10px 15px;
  border: 1px solid #e8e8e8;
}
.api-table td:first-child {
  background: #fafafa;
  font-weight: 500;
  width: 120px;
}
.api-param-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 13px;
}
.api-param-table th, .api-param-table td {
  padding: 10px 12px;
  border: 1px solid #e8e8e8;
  text-align: left;
}
.api-param-table th {
  background: #fafafa;
  font-weight: 600;
}
.api-param-table td:first-child {
  font-family: monospace;
  color: #1890ff;
}
.code-block {
  background: #282c34;
  border-radius: 6px;
  padding: 15px;
  overflow-x: auto;
  margin: 10px 0;
}
.code-block pre {
  margin: 0;
  color: #abb2bf;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 13px;
  line-height: 1.5;
}

/* Ant Calendar Picker */
.ant-calendar-picker {
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 100%;
}
.ant-calendar-picker-input {
  padding: 8px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 14px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
.ant-calendar-picker-input:hover {
  border-color: #1890ff;
}
.ant-calendar-picker-icon {
  color: #bfbfbf;
  font-size: 14px;
}
.ant-calendar-picker-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  margin-top: 4px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.ant-calendar {
  width: 280px;
  font-size: 14px;
}
.ant-calendar-panel {
  outline: none;
}
.ant-calendar-header {
  padding: 10px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ant-calendar-header a {
  cursor: pointer;
  color: #666;
  padding: 8px;
  user-select: none;
}
.ant-calendar-header a:hover {
  color: #1890ff;
}
.ant-calendar-prev-year-btn, .ant-calendar-next-year-btn {
  font-size: 16px;
}
.ant-calendar-prev-month-btn, .ant-calendar-next-month-btn {
  font-size: 18px;
}
.ant-calendar-prev-year-btn { position: absolute; left: 0; }
.ant-calendar-next-year-btn { position: absolute; right: 0; }
.ant-calendar-prev-month-btn { position: absolute; left: 24px; }
.ant-calendar-next-month-btn { position: absolute; right: 24px; }
.ant-calendar-ym-select {
  font-weight: 500;
  color: #333;
}
.ant-calendar-ym-select a {
  margin: 0 4px;
}
.ant-calendar-body {
  padding: 8px 12px;
}
.ant-calendar-table {
  width: 100%;
  border-collapse: collapse;
}
.ant-calendar-table th {
  padding: 8px 0;
  font-weight: 400;
  color: #999;
  font-size: 12px;
}
.ant-calendar-table td {
  padding: 4px 0;
  text-align: center;
}
.ant-calendar-date {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.ant-calendar-date:hover {
  background: #e6f7ff;
}
.ant-calendar-today .ant-calendar-date {
  border: 1px solid #1890ff;
  color: #1890ff;
}
.ant-calendar-selected-day .ant-calendar-date {
  background: #1890ff;
  color: #fff;
}
.ant-calendar-last-month-cell .ant-calendar-date,
.ant-calendar-next-month-btn-day .ant-calendar-date {
  color: #bfbfbf;
}
.ant-calendar-footer {
  padding: 8px 12px;
  border-top: 1px solid #e8e8e8;
}
.ant-calendar-footer-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ant-calendar-footer-btn a {
  cursor: pointer;
  color: #1890ff;
  font-size: 12px;
}
.ant-calendar-footer-btn a:hover {
  color: #40a9ff;
}
.ant-calendar-ok-btn {
  background: #1890ff;
  color: #fff !important;
  padding: 4px 12px;
  border-radius: 4px;
}
.ant-calendar-ok-btn:hover {
  background: #40a9ff;
}
.ant-calendar-time-picker-btn {
  color: #666;
}
.ant-calendar-time-picker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 8px;
}
.ant-calendar-time-picker select {
  padding: 4px 8px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-size: 12px;
  width: 60px;
}

/* Ant Tabs for Software Config Modal */
.ant-tabs {
  width: 100%;
}
.ant-tabs-bar {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 0;
}
.ant-tabs-nav {
  display: flex;
  padding: 0 20px;
}
.ant-tabs-tab {
  padding: 12px 20px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  margin-right: 10px;
}
.ant-tabs-tab:hover {
  color: #1890ff;
}
.ant-tabs-tab-active {
  color: #1890ff;
  border-bottom-color: #1890ff;
}
.ant-tabs-content {
  padding: 20px;
}
.config-form-container {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Toast Animation */
@keyframes fadeInOut {
  0% { opacity: 0; transform: translate(-50%, -20px); }
  15% { opacity: 1; transform: translate(-50%, 0); }
  85% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, -20px); }
}
