.skin-green-light .main-header .navbar {
    background-color: #648755;
}
.skin-green-light .main-header .logo {
    background-color: #648755;
}
.skin-green-light .main-header li.user-header {
    background-color: #648755;
}
.skin-green-light .sidebar-menu > li.active {
    border-left-color: #648755;
}

/* Custom Button Styles */
.btn {
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Custom Form Styles */
.form-control {
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 8px rgba(100, 135, 85, 0.4);
  border-color: #648755;
}

/* Custom Info-Box Styles */
.info-box {
  border-radius: 15px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Custom Typography Styles */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
  font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

p, .sidebar-menu > li > a, .treeview-menu > li > a {
  font-size: 14px;
  line-height: 1.6;
}

/* Custom Table Styles */
.table-bordered {
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  border-radius: 10px;
  overflow: hidden;
}

.table-bordered > thead > tr > th {
  background-color: #f8f9fa;
  border-bottom-width: 2px;
}

.table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
  padding: 12px;
  vertical-align: middle;
}

.table-bordered > tbody > tr {
  border-bottom: 1px solid #dee2e6;
}

.table-bordered > tbody > tr:last-child {
  border-bottom: none;
}

/* Custom Tab Styles */
.nav-tabs-custom > .nav-tabs > li > a {
  border-radius: 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-tabs-custom > .nav-tabs > li.active > a,
.nav-tabs-custom > .nav-tabs > li.active > a:hover,
.nav-tabs-custom > .nav-tabs > li.active > a:focus {
  background-color: transparent;
  border-bottom-color: #648755;
}

/* Custom Modal Styles */
.modal-content {
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  transform: translate(0, 0);
}