* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #94a3b8;
  --border: #e2e8f0;
  --sidebar-width: 280px;
  --sidebar-collapsed: 80px;
  --header-height: 80px;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

body {
  font-family: "Inter", sans-serif;
  background-color: #f1f5f9;
  color: var(--dark);
  line-height: 1.6;
}

.app-wrapper {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Sidebar Styles */
.sidebar {
  width: var(--sidebar-width);
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: white;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  transition: width 0.3s ease;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}

.sidebar::-webkit-scrollbar {
  width: 5px;
}

.sidebar::-webkit-scrollbar-track {
  background: var(--dark);
}

.sidebar::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed);
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-text,
.sidebar.collapsed .user-text {
  display: none;
}

.sidebar.collapsed .sidebar-header {
  justify-content: center;
  padding: 1.5rem 0;
}

.sidebar.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}

.sidebar-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo i {
  font-size: 2rem;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.2);
  padding: 8px;
  border-radius: 12px;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.sidebar-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.sidebar-toggle:hover {
  background: var(--primary);
}

.sidebar-nav {
  padding: 1.5rem 0;
}

.nav-menu {
  list-style: none;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem 1.5rem;
  margin: 4px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--gray);
}

.nav-item i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.nav-item.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.nav-item.active i {
  color: white;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  bottom: 0;
  background: inherit;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info i {
  font-size: 2rem;
  color: var(--gray);
}

.user-text {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
}

.user-role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Main Content Styles */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  transition: margin-left 0.3s ease;
  min-height: 100vh;
  background: #f1f5f9;
}

.sidebar.collapsed + .main-content {
  margin-left: var(--sidebar-collapsed);
}

.content-header {
  background: white;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
}

.page-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-title i {
  color: var(--primary);
  font-size: 1.8rem;
}

.btn-add {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.btn-add:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-add i {
  font-size: 1.1rem;
}

.content-container {
  padding: 2rem;
}

/* Card Styles */
.content-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: fadeIn 0.4s ease-out;
  margin-bottom: 2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-card h2 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
}

/* Stat Cards untuk Beranda */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.stat-card:nth-child(2) {
  background: linear-gradient(135deg, var(--success), #059669);
}

.stat-card:nth-child(3) {
  background: linear-gradient(135deg, var(--warning), #d97706);
}

.stat-card:nth-child(4) {
  background: linear-gradient(135deg, var(--secondary), #475569);
}

.stat-card h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Table Styles */
.table-responsive {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.data-table th {
  background: #f8fafc;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
}

.data-table tbody tr:hover {
  background: #f8fafc;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.status-proses {
  background: #fff7ed;
  color: #9a3412;
}

.status-approved {
  background: #e0f2fe;
  color: #0369a1;
}

.status-done {
  background: #dcfce7;
  color: #166534;
}

/* Bank Account Cards */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.bank-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bank-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}

.bank-card:nth-child(2) {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

.bank-card:nth-child(3) {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.bank-card:nth-child(4) {
  background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}

.bank-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bank-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.bank-account {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-family: monospace;
}

.bank-balance {
  font-size: 1.5rem;
  font-weight: 700;
}

.bank-currency {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-left: 0.25rem;
}

/* Summary Cards */
.summary-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: var(--secondary);
  font-weight: 500;
}

.summary-value {
  font-weight: 600;
  color: var(--dark);
}

/* Overlay untuk mobile */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  display: block;
  opacity: 1;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: white;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2001;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--danger);
}

.modal-body {
  padding: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 0.95rem;
}

.btn-secondary {
  background: var(--border);
  color: var(--dark);
}

.btn-secondary:hover {
  background: var(--gray);
  color: white;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
    width: var(--sidebar-width) !important;
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .sidebar.collapsed {
    transform: translateX(-100%);
  }

  .main-content {
    margin-left: 0 !important;
  }

  .content-header {
    padding: 1rem;
  }

  .content-container {
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-add span {
    display: none;
  }

  .btn-add {
    padding: 0.75rem;
    border-radius: 50%;
  }

  .btn-add i {
    margin: 0;
  }

  .page-title {
    font-size: 1.2rem;
  }

  .bank-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .sidebar,
  .btn-add,
  .sidebar-toggle,
  .modal {
    display: none !important;
  }

  .main-content {
    margin-left: 0 !important;
  }
}
/* Tambahkan di akhir file style.css yang sudah ada */

/* Form Upload Styling */
.file-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8fafc;
  border: 2px dashed var(--primary);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.file-upload-label:hover {
  background: #e0f2fe;
}

.file-upload-label i {
  font-size: 1.5rem;
  color: var(--primary);
}

.file-upload input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.file-name {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-top: 5px;
}

/* Preview Gambar Kecil */
.bukti-preview {
  max-width: 100px;
  max-height: 60px;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;
  border: 2px solid var(--border);
}

.bukti-preview:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow);
}

.bukti-thumbnail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bukti-thumbnail i {
  font-size: 1.2rem;
  color: var(--primary);
}

.bukti-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.bukti-link:hover {
  text-decoration: underline;
}

/* Image Preview Modal */
.image-preview-content {
  max-width: 800px;
  width: auto;
  background: transparent;
}

.image-preview-body {
  text-align: center;
  background: white;
  border-radius: 10px;
  padding: 1rem;
}

#previewImage {
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 8px;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.2s;
}

.btn-icon:hover {
  background: var(--border);
}

.btn-icon.delete:hover {
  color: var(--danger);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--gray);
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideIn 0.3s ease;
  z-index: 3000;
  border-left: 4px solid var(--success);
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.warning {
  border-left-color: var(--warning);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Saldo di Akun Bank */
.bank-saldo {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-top: 10px;
}
/* Date Range Picker Styles */
.date-range-picker {
  position: relative;
  display: inline-block;
}

.date-range-button {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.date-range-button:hover {
  background: #f8fafc;
  border-color: var(--primary);
}

.date-range-button i {
  color: var(--primary);
}

.date-range-popup {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 1000;
  display: none;
  min-width: 300px;
}

.date-range-popup.active {
  display: block;
}

.date-range-popup .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.date-range-popup .calendar-header button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--secondary);
  padding: 4px 8px;
  border-radius: 6px;
}

.date-range-popup .calendar-header button:hover {
  background: #f1f5f9;
  color: var(--primary);
}

.date-range-popup .calendar-header span {
  font-weight: 600;
  color: var(--dark);
}

.date-range-popup .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.date-range-popup .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-range-popup .calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
}

.date-range-popup .calendar-day:hover {
  background: #f1f5f9;
}

.date-range-popup .calendar-day.selected {
  background: var(--primary);
  color: white;
}

.date-range-popup .calendar-day.in-range {
  background: rgba(37, 99, 235, 0.1);
}

.date-range-popup .calendar-day.start-date {
  background: var(--primary);
  color: white;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.date-range-popup .calendar-day.end-date {
  background: var(--primary);
  color: white;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.date-range-popup .calendar-day.empty {
  cursor: default;
}

.date-range-popup .calendar-day.empty:hover {
  background: none;
}

.date-range-popup .calendar-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.date-range-popup .calendar-footer button {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.date-range-popup .calendar-footer .btn-apply {
  background: var(--primary);
  color: white;
}

.date-range-popup .calendar-footer .btn-apply:hover {
  background: var(--primary-dark);
}

.date-range-popup .calendar-footer .btn-cancel {
  background: #f1f5f9;
  color: var(--secondary);
}

.date-range-popup .calendar-footer .btn-cancel:hover {
  background: #e2e8f0;
}

.range-info {
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.range-info i {
  color: var(--primary);
}

.range-info span {
  font-weight: 600;
}
/* Login Modal Styles */
#loginModal .modal-content {
  animation: fadeInUp 0.5s ease;
}

#loginModal .modal-header {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

#loginModal input {
  padding: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

#loginModal input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

#loginModal .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 600;
  letter-spacing: 0.5px;
}

#loginModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px var(--primary);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logout Button */
#logoutBtn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  transition: all 0.3s;
}

#logoutBtn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px #ef4444;
}

/* User Info Hover */
.user-info {
  transition: all 0.3s;
  border-radius: 12px;
  padding: 0.5rem;
}

.user-info:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Login */
@media screen and (max-width: 768px) {
  #loginModal .modal-content {
    width: 95%;
    margin: 1rem;
  }
}
/* Tambahan CSS untuk Menu Gaji Karyawan */
.stat-card:nth-child(4) {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Warna untuk baris gaji di tabel */
.data-table tbody tr[style*="background-color: #e6f3ff"] {
  background-color: #e6f3ff !important;
}

.data-table tbody tr[style*="background-color: #e6f3ff"]:hover {
  background-color: #d4e6ff !important;
}

/* Warna untuk total gaji di statistic */
.statistic-table td[style*="color: #8b5cf6"] {
  color: #8b5cf6 !important;
  font-weight: 600;
}

/* Ikon untuk menu gaji */
.nav-item i.fa-money-bill-wave {
  color: inherit;
}

/* Card untuk ringkasan gaji di beranda */
.summary-item .summary-value .gaji-total {
  color: #8b5cf6;
  font-weight: 600;
}

/* Hover effect untuk tombol export */
.btn-add[onclick*="gaji"]:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}
