@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;1,700&display=swap');

* {
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #1e6f5c;
  --green2: #289672;
  --orange: #ff8718;
  --white: #fff;
  --black: #222;
  --black2: #999;
}

body {
  min-height: 100vh;
  overflow-y: auto;
}

.container {
  position: relative;
  width: 100%;
}

.navigation {
  position: fixed;
  width: 80px;
  height: 100%;
  background: linear-gradient(to bottom,
      #F3FAF7,
      #1e6f5c);
  border-left: 10px solid transparent;
  transition: 0.5s;
  overflow: hidden;
  /* z-index: 1000;   */
}

.navigation.active {
  width: 250px;
}

.navigation ul {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.navigation ul li:hover,
.navigation ul li.hovered {
  background-color: var(--green);
}

.navigation ul li:nth-child(1) {
  align-items: center;
  margin-bottom: 20px;
  pointer-events: none;
}

.navigation ul li .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* gambar logonya */
.navigation ul li .logo img {
  width: 70px;
  /* bisa kamu sesuaikan */
  height: 70px;
  object-fit: contain;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--white);
}

.navigation ul li:hover a,
.navigation ul li.hovered a {
  color: var(--white);
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
}

.navigation ul li a .icon ion-icon {
  font-size: 1.75rem;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}

.navigation ul li:hover a::before,
.navigation ul li.hovered a::before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px var(--green);
  pointer-events: none;
}

.navigation ul li:hover a::after,
.navigation ul li.hovered a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px var(--green);
  pointer-events: none;
}

.main {
  position: relative;
  width: calc(100% - 80px);
  left: 80px;
  min-height: 100vh;
  background: var(--green);
  transition: 0.5s;
  overflow: visible;
  z-index: 1;
}

.main.active {
  width: calc(100% - 250px);
  left: 250px;
}

.topbar {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  position: relative;
  /* tambah ini */
  z-index: 1000;
}

.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  cursor: pointer;
}

.user {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1000;
}

.topbar ion-icon {
  color: var(--white);
}

.cardBox {
  /* ← tambah ini */
  position: relative;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.cardBox .card {
  position: relative;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
}

.cardBox .card .numbers {
  position: relative;
  font-weight: 500;
  font-size: 2rem;
  color: var(--green2);
}

.cardBox .card .cardName {
  color: var(--black2);
  font-size: 1rem;
  margin-top: 5px;
}

.cardBox .card .iconBx {
  font-size: 2.8rem;
  color: var(--black2);
}

.cardBox .card:hover {
  background: var(--green2);
}

.cardBox .card:hover .numbers,
.cardBox .card:hover .cardName,
.cardBox .card:hover .iconBx {
  color: var(--white);
}

.details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 kolom */
  grid-template-rows: auto auto;
  position: relative;
  width: 100%;
  padding: 20px;
  grid-gap: 30px;
}

.details .recentOrders {
  position: relative;
  display: grid;
  min-height: 450px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  /* margin-bottom: 15px; */
}

.details .cardHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.cardHeader h2 {
  font-weight: 600;
  color: var(--green);
}

.cardHeader .btn {
  position: relative;
  padding: 5px 10px;
  background: var(--green);
  text-decoration: none;
  color: var(--white);
  border-radius: 6px;
}

.details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.details table thead td {
  font-weight: 500;
}

.details .recentOrders table tr {
  color: var(--black2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.details .recentOrders table tr:last-child {
  border-bottom: none;
}

.details .recentOrders table tbody tr:hover {
  background: var(--green2);
  color: var(--white);
}

.details .recentOrders table tr td {
  padding: 10px;
}

.details .recentOrders table tr td:last-child {
  text-align: end;
}

.details .recentOrders table tr td:nth-child(2) {
  text-align: end;
}

.details .recentOrders table tr td:nth-child(3) {
  text-align: center;
}

.status.delivered {
  padding: 2px 4px;
  background: #8de02c;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.status.pending {
  padding: 2px 4px;
  background: #e9b10a;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.status.return {
  padding: 2px 4px;
  background: #f00;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.status.inProgress {
  padding: 2px 4px;
  background: #1795ce;
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.coba {
  width: 90%;
  max-width: 1100px;
  background: var(--white);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  justify-content: center;
  margin: 10px auto;
}

.tabs-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px 20px 0 0;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
  background: #f9fafb;
}

.tabs-container .tab {
  flex: 1;
  padding: 20px 30px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: #6b7280;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}

.tabs-container .tab:hover {
  background: rgba(45, 122, 100, 0.05);
  color: #2d7a64;
}

.tab.active {
  color: #1a5f4e;
  background: white;
  border-bottom-color: #2d7a64;
  font-weight: 700;
}

.tab-badge {
  display: inline-block;
  background: #ef4444;
  color: white;
  border-radius: 12px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 30px;
  background: white;
  border-radius: 0 0 20px 20px;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Section */
.filter-section {
  background: #f9fafb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  border: 2px solid #e5e7eb;
}

.filter-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  color: #2d7a64;
  font-weight: 600;
  font-size: 13px;
}

.filter-input {
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: white;
}

.filter-input:focus {
  outline: none;
  border-color: #2d7a64;
  box-shadow: 0 0 0 3px rgba(45, 122, 100, 0.1);
}

/* Request Cards */
.request-grid {
  display: grid;
  gap: 20px;
}

.request-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 25px;
  align-items: center;
}

.request-card:hover {
  border-color: #2d7a64;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.request-card.urgent {
  border-left: 5px solid #ef4444;
  background: linear-gradient(90deg, rgba(254, 226, 226, 0.3), white);
}

.request-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.customer-avatar-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d7a64, #e8834f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(45, 122, 100, 0.3);
}

.request-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.request-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6b7280;
}

.meta-icon {
  width: 18px;
  height: 18px;
}

.urgent-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 10px;
}

.request-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-schedule {
  background: linear-gradient(135deg, #2d7a64, #1a5f4e);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 122, 100, 0.3);
  white-space: nowrap;
}

.btn-schedule:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 122, 100, 0.4);
}

.btn-detail {
  background: white;
  color: #2d7a64;
  border: 2px solid #2d7a64;
  padding: 10px 30px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-detail:hover {
  background: #f0fdf4;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2d7a64, #e8834f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.customer-name {
  font-weight: 600;
  color: #1f2937;
}

.address {
  color: #6b7280;
  font-size: 14px;
}

.schedule-time {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-date {
  font-weight: 600;
  color: #1f2937;
  font-size: 15px;
}

.schedule-hour {
  color: #6b7280;
  font-size: 13px;
}

.status-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  text-align: center;
  min-width: 120px;
}

.status-menunggu {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
}

.status-proses {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
}

.status-selesai {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
}

.status-batal {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #991b1b;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-edit {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-edit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-view {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-delete {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-delete:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .request-card {
    grid-template-columns: 1fr;
  }

  .request-info {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    grid-template-columns: 1fr;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

.coba .tab {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.tab button {
  padding: 14px 32px;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(26, 95, 78, 0.1);
  color: var(--green);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s ease;
}

.tab button:hover {
  background: rgba(26, 95, 78, 0.2);
}

.tab button.active {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 15px rgba(26, 95, 78, 0.3);
}

/* HEADER - Diperbaiki */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.header h2 {
  font-size: 28px;
  font-weight: 900;
  color: var(--green2);
  margin: 0;
}

.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.actions input {
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid #e5e7eb;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 250px;
  transition: all 0.3s ease;
}

.actions input:focus {
  outline: none;
  border-color: #1a5f4e;
  box-shadow: 0 0 0 4px rgba(26, 95, 78, 0.1);
}

.btn-add {
  background: var(--orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 131, 79, 0.3);
  white-space: nowrap;
}

.btn-add:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 131, 79, 0.4);
}

/* TABLE - Diperbaiki */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 20px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

thead tr {
  background: var(--green);
}

th {
  padding: 16px 20px;
  text-align: left;
  color: white;
  font-weight: 500;
  font-size: 14px;
  border: none;
  white-space: nowrap;
}

tbody tr {
  transition: all 0.2s ease;
  background: white;
}

tbody tr:hover {
  background: #f0f7f4;
}

td {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
  color: #1f2937;
  font-weight: 400;
  font-size: 15px;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Action links styling */
td:last-child {
  text-align: center;
}

.action-link {
  color: #1a5f4e;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.action-link:hover {
  color: #e8834f;
}

.action-divider {
  color: #d1d5db;
  margin: 0 8px;
}

/* PAGINATION - Diperbaiki */
.pagination {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #1f2937;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination button:hover {
  background: #f0f7f4;
  border-color: #1a5f4e;
  color: #1a5f4e;
}

.pagination button.active {
  background: var(--green);
  color: white;
  border-color: #1a5f4e;
}

.pagination button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* TAB CONTENT */
.tabcontent {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tabcontent.active,
#tabnasabah {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Status Badge */
.status-badge {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  display: inline-block;
}

.status-aktif {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.status-nonaktif {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
  color: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: stretch;
  }

  .actions {
    flex-direction: column;
  }

  .actions input {
    width: 100%;
    min-width: 0;
  }

  table {
    display: block;
    overflow-x: auto;
  }
}

/* STATUS: Dijadwalkan */
.status-dijadwalkan {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0c4a6e;
}

/* STATUS SELECT di tabel */
.status-select {
  padding: 8px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  background: white;
  color: #1f2937;
  transition: border-color 0.2s;
  font-family: "Ubuntu", sans-serif;
}

.status-select:focus {
  outline: none;
  border-color: #2d7a64;
  box-shadow: 0 0 0 3px rgba(45, 122, 100, 0.1);
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.empty-state p {
  font-size: 16px;
  font-weight: 500;
}

.empty-td {
  text-align: center !important;
  padding: 40px !important;
  color: #9ca3af;
  font-style: italic;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.modal-box {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--green);
  color: white;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

.modal-body {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-nasabah-info {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 15px;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-label {
  color: #6b7280;
  font-weight: 500;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.required {
  color: #ef4444;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.modal-footer {
  padding: 20px 25px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 2px solid #f3f4f6;
  background: #fafafa;
}

.btn-cancel {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #6b7280;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Ubuntu", sans-serif;
}

.btn-cancel:hover {
  border-color: #9ca3af;
  color: #374151;
}

.btn-submit {
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(30, 111, 92, 0.3);
  font-family: "Ubuntu", sans-serif;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 111, 92, 0.4);
}

/* Detail Modal Grid */
.detail-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.detail-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid #f3f4f6;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
}