.kErfLX {
    max-width: 100px!important;
}

.adminjs_Header img {
    display: none !important;
  }
  
  .adminjs_Box > section[width="380px"] {
    display: none !important;
  }

  .adminjs_Box form {
    margin: 0 auto;
  }

  .adminjs_Button {
    background-color: #B5D035 !important;
    border-color: #B5D035 !important;
    color: #fff !important;
  }
  
  .adminjs_Button:hover {
    background-color: #A3BE30 !important;
    border-color: #A3BE30 !important;
  }

/* Improve form layout */
.adminjs-edit {
  max-width: 1200px;
  margin: 0 auto;
}

/* Custom styling for input fields */
.adminjs-input {
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  padding: 8px !important;
  transition: all 0.2s ease-in-out !important;
}

.adminjs-input:focus {
  border-color: #B5D035 !important;
  box-shadow: 0 0 0 2px rgba(181, 208, 53, 0.2) !important;
}

/* Improve table readability */
.adminjs-table th {
  background-color: #f5f5f5 !important;
}

.adminjs-table tr:hover {
  background-color: #f9f9f9 !important;
}

/* Style cards */
.adminjs-card {
  border-radius: 8px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.2s ease-in-out !important;
}

.adminjs-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Custom button styling */
.adminjs-button {
  transition: all 0.2s ease-in-out !important;
}

.adminjs-button:hover {
  transform: translateY(-1px) !important;
}

/* Sidebar improvements */
.sidebar-logo {
  padding: 16px !important;
}

/* Custom styles for tables in the dealer component */
table.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

table.data-table th,
table.data-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

table.data-table th {
  background-color: #f5f5f5;
  font-weight: 500;
}

table.data-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Custom card styling */
.custom-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 16px;
  margin-bottom: 24px;
}

/* Tag styling for multi-values */
.custom-tag {
  display: inline-block;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 4px 8px;
  margin-right: 6px;
  margin-bottom: 6px;
  font-size: 12px;
}

/* Grid layout */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

/* Dashboard specific styles */
.dashboard-card {
  text-align: center;
  padding: 24px;
  height: 100%;
}

.dashboard-value {
  font-size: 32px;
  font-weight: bold;
  color: #B5D035;
  margin: 12px 0;
}

.dashboard-link {
  margin-top: 16px;
}

/* Section headers */
.section-header {
  margin-top: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Form field groups */
.field-group {
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 16px;
}

.field-group-title {
  font-weight: 500;
  margin-bottom: 12px;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .field-group {
    padding: 8px;
  }
  
  .adminjs-edit {
    padding: 8px;
  }
}