* {
  box-sizing: border-box;
}
button, input, select, textarea {
  font-family: inherit;
}
body {
  margin: 0;
  font-family:
    "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #f4f6f9;
  background-attachment: fixed;
  color: #231f20;
}
.app {
  min-height: 100vh;
  display: flex;
}

.sidebar {
  width: 260px;
  background: linear-gradient(180deg, #231f20 0%, #2d2a2b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}
.sidebar .brand {
  padding: 24px 20px 16px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fc7ab0, #ff91c4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.sidebar-username {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.sidebar-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.nav {
  flex: 1;
  padding: 20px 0;
}
.nav-item {
  width: 100%;
  padding: 14px 20px;
  margin: 4px 12px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: left;
}
.nav-item span:first-child {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateX(4px);
}
.nav-item.active {
  background: linear-gradient(135deg, #fc7ab0 0%, #ff91c4 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(252, 122, 176, 0.4);
}
.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar-footer .btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  transition: all 0.3s;
}
.sidebar-footer .btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.dashboard {
  display: flex;
  width: 100%;
}
.dashboard.hidden {
  display: none !important;
}
.main-content {
  margin-left: 260px;
  flex: 1;
  padding: 32px;
  width: calc(100% - 240px);
}
.view-content {
  display: block;
}
.view-content.hidden {
  display: none !important;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  font-weight: 700;
  font-size: 18px;
}
.actions .btn {
  margin-left: 8px;
}

.login-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  z-index: 1000;
}
.login-view.hidden {
  display: none !important;
}
.card {
  background: rgba(255, 255, 255, 0.95);
  padding: 28px;
  width: 360px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(252, 122, 176, 0.15);
}
.card h2 {
  margin: 0 0 6px;
  color: #231f20;
}
.card label {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #666;
}
.card input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 6px;
}

.dashboard {
  padding: 0;
}
.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr)) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(252, 122, 176, 0.1);
  backdrop-filter: blur(10px);
}
.filters label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}
.filters input,
.filters select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 14px;
}
.filters input:focus,
.filters select:focus {
  outline: none;
  border-color: #fc7ab0;
  box-shadow: 0 0 0 3px rgba(252, 122, 176, 0.1);
}

.panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.panel.full-width {
  width: 100%;
}
.panel h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
}
#usersView .panel {
  width: 100%;
}
#usersView h3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
  color: #231f20;
}
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th,
.table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 13px;
}
.table th {
  text-align: left;
  color: #9ca3af;
  font-weight: 600;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
}
.table tbody tr {
  transition: all 0.2s;
}
.table tbody tr:hover {
  background: #fdf2f8;
  cursor: pointer;
}
.table tbody tr:nth-child(even) {
  background: #fafafa;
}
.table tbody tr:nth-child(even):hover {
  background: #fdf2f8;
}

.badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
}
.badge.pending {
  background: #fffbeb;
  color: #d97706;
  border-color: #fcd34d;
}
.badge.confirmed,
.badge.นัดหมายเรียบร้อย {
  background: #ecfdf5;
  color: #059669;
  border-color: #6ee7b7;
}
.badge.processing {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #c4b5fd;
}
.badge.ready {
  background: #ecfdf5;
  color: #059669;
  border-color: #6ee7b7;
}
.badge.completed {
  background: #ecfdf5;
  color: #047857;
  border-color: #34d399;
}
.badge.cancelled,
.badge.ยกเลิก {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}
.badge.ไม่รับสายวันที่1,
.badge.ไม่รับสายวันที่2,
.badge.ไม่รับสายวันที่3 {
  background: #fff7ed;
  color: #ea580c;
  border-color: #fdba74;
}
.badge.รอติดตาม {
  background: #eff6ff;
  color: #2563eb;
  border-color: #93c5fd;
}

.detail-empty {
  color: #999;
  font-size: 13px;
}
.detail .section {
  margin-bottom: 16px;
}
.detail .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.detail label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}
.detail input,
.detail select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 13px;
  transition: border-color 0.2s;
}
.detail input:focus,
.detail select:focus {
  outline: none;
  border-color: #f472b6;
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}

.btn {
  padding: 11px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn.primary {
  background: linear-gradient(135deg, #fc7ab0 0%, #ff91c4 100%);
  border-color: #fc7ab0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(252, 122, 176, 0.4);
}
.btn.primary:hover {
  box-shadow: 0 6px 16px rgba(252, 122, 176, 0.5);
}
.btn.ghost {
  background: transparent;
  border-color: #d1d5db;
  color: #374151;
}
.btn.ghost:hover {
  background: #f3f4f6;
}

.hidden {
  display: none !important;
}
.muted {
  color: #888;
  font-size: 12px;
}
.error {
  color: #c00;
  font-size: 12px;
}
.success {
  color: #0a7c3a;
  font-size: 12px;
}
.actions-row {
  display: flex;
  align-items: end;
  gap: 8px;
}

.conditional-field {
  margin-top: 16px;
}
.conditional-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.conditional-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s;
  resize: vertical;
}
.conditional-field textarea:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.modal.hidden {
  display: none;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.modal-content,
.modal-box {
  position: relative;
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid #fce7f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
  border-radius: 20px 20px 0 0;
}
.modal-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #831843;
}
.modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #6b7280;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}
.modal-body {
  padding: 28px;
}
.modal-body .section {
  margin-bottom: 24px;
}
.modal-body .section h4 {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  border-left: 3px solid #f472b6;
  padding-left: 12px;
}
.modal-body .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}
.modal-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}
.modal-body input,
.modal-body select,
.modal-body textarea {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s;
  font-family: inherit;
  resize: vertical;
}
.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
  outline: none;
  border-color: #ec4899;
  box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}
/* Order Modal 2-column layout */
.order-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .order-modal-grid { grid-template-columns: 1fr; }
}
.order-modal-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.om-card {
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 16px;
}
.om-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f472b6;
}
.om-card label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  margin: 8px 0 4px;
}
.om-card label:first-of-type {
  margin-top: 0;
}
.om-card input,
.om-card select,
.om-card textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.om-card input:focus,
.om-card select:focus,
.om-card textarea:focus {
  outline: none;
  border-color: #f472b6;
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
}
.om-card textarea {
  resize: vertical;
}
.om-card input:disabled {
  background: #f3f4f6;
  color: #9ca3af;
}

/* Order + Eval Stats Row — unified style */
.order-stats-row,
.eval-stats-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.order-stat-card,
.eval-stat-card {
  flex: 1;
  min-width: 100px;
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--stat-color, #d1d5db);
  background: var(--stat-bg, #fafafa);
  transition: transform 0.2s, box-shadow 0.2s;
}
.order-stat-card:hover,
.eval-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.order-stat-label,
.eval-stat-label {
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}
.order-stat-num,
.eval-stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--stat-color, #231f20);
  line-height: 1;
}

/* Page Header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.page-title {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.page-title svg { flex-shrink: 0; }

/* Pagination Bar — shared across all pages */
.pagination-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 13px;
  color: #6b7280;
}
.pagination-bar .btn {
  padding: 6px 14px;
  font-size: 13px;
}
.pagination-bar .btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.modal-body input:disabled {
  background: #f3f4f6;
  cursor: not-allowed;
}
.modal-body input[type="checkbox"],
.modal-body input[type="radio"] {
  width: auto;
  padding: 0;
  border: none;
  box-shadow: none;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0;
}
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid #fce7f3;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: linear-gradient(135deg, #fdf2f8 0%, #fff 100%);
  border-radius: 0 0 20px 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Mobile Menu Button (show only on mobile) */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1001;
  background: #231f20;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.mobile-menu-btn:hover {
  background: #fc7ab0;
  transform: scale(1.05);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Sidebar backdrop for mobile */
.sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-backdrop.active {
  display: block;
  opacity: 1;
}

/* Tablet และ Mobile (หน้าจอเล็กกว่า 768px) */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .sidebar.mobile-open {
    transform: translateX(0);
    z-index: 1000;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
    padding: 60px 16px 20px 16px; /* เพิ่ม padding top เพื่อปุ่ม menu */
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filters > div:last-child {
    grid-column: span 1;
  }
}

/* Desktop (หน้าจอใหญ่กว่า 768px) - แสดง sidebar ตามปกติ */
@media (min-width: 769px) {
  .sidebar {
    transform: translateX(0) !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }
}

/* Mobile (หน้าจอเล็กกว่า 768px ต่อจากเดิม) */
@media (max-width: 768px) {
  .main-content {
    padding: 16px 12px;
  }

  .filters {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .filters > div:last-child {
    grid-column: span 1;
  }

  .panel {
    padding: 16px;
    border-radius: 12px;
  }

  .panel h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  /* Table responsive */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .table {
    min-width: 800px;
  }

  .table th,
  .table td {
    padding: 10px 8px;
    font-size: 12px;
  }

  /* Modal responsive */
  .modal-content {
    width: 95%;
    max-width: 100%;
    margin: 10px;
    max-height: 95vh;
    overflow-y: auto;
  }

  .modal-header h3 {
    font-size: 18px;
  }

  .detail .row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Pagination responsive */
  #paginationContainer {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  #paginationContainer button {
    padding: 6px 12px;
    font-size: 13px;
  }

  /* Login card responsive */
  .card {
    width: 100%;
    max-width: 360px;
    margin: 0 16px;
  }

  /* Per page select responsive */
  #perPageSelect {
    padding: 4px 8px !important;
    font-size: 13px;
  }
}

/* Mobile เล็ก (หน้าจอเล็กกว่า 480px) */
@media (max-width: 480px) {
  .sidebar {
    width: 100%;
  }

  .sidebar .brand {
    padding: 16px;
    font-size: 18px;
  }

  .nav-item {
    padding: 12px 16px;
    font-size: 14px;
  }

  .table {
    min-width: 600px;
  }

  .table th,
  .table td {
    padding: 8px 6px;
    font-size: 11px;
  }

  .badge {
    padding: 4px 8px;
    font-size: 11px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 13px;
  }

  .modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 16px;
  }
}

/* ═══════════════════════════════════════════
   📱 PHONE CHECKS MODULE
   ═══════════════════════════════════════════ */

/* Stats row */
.pc-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pc-stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 18px 24px;
  flex: 1;
  min-width: 120px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #e5e7eb;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pc-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.pc-stat-card.pc-stat-pending {
  border-color: #f59e0b;
}
.pc-stat-card.pc-stat-verified {
  border-color: #22c55e;
}
.pc-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #231f20;
  line-height: 1;
}
.pc-stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* Status badges — Phone Checks (badge-X classes) */
.badge-pending {
  background: #fffbeb;
  color: #d97706;
  border-color: #fcd34d;
}
.badge-success {
  background: #ecfdf5;
  color: #059669;
  border-color: #6ee7b7;
}
.badge-info {
  background: #eff6ff;
  color: #2563eb;
  border-color: #93c5fd;
}

/* Status badges — Evaluations */
.badge.pending_upload {
  background: #fffbeb;
  color: #d97706;
  border-color: #fcd34d;
}
.badge.pending_review {
  background: #eff6ff;
  color: #2563eb;
  border-color: #93c5fd;
}
.badge.rejected {
  background: #fef2f2;
  color: #dc2626;
  border-color: #fca5a5;
}
.badge.priced {
  background: #f5f3ff;
  color: #7c3aed;
  border-color: #c4b5fd;
}
.badge.ordered {
  background: #ecfdf5;
  color: #059669;
  border-color: #6ee7b7;
}
