@charset "UTF-8";
/*----===================== Variables =====================----*/
/*----===================== Mixin =====================----*/
/*----===================== Nile Global Typography =====================----*/
.nile-typography-text {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.nile-typography-small-text {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.nile-typography-large-text {
  font-family: "Cairo", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px;
}

.nile-typography-meta {
  font-family: "Cairo", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.nile-typography-menu {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.1px;
}

.nile-typography-section-title {
  font-family: "Cairo", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  letter-spacing: -0.64px;
}

.nile-typography-post-title {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
}

.nile-typography-post-title-large {
  font-family: "Cairo", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
}

h1 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

h2 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
}

h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 9px;
}

h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

h5 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 7px;
}

h6 {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 6px;
}

html {
  direction: rtl;
}

html,
body,
#dashboard-layout {
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

#page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
}

.container {
  max-width: 1280px !important;
}

.relative {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

body.home-in {
  background-image: url(../img/pattren-home.jpg);
  background-size: 300px 300px;
}

#system-homepage-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  background-color: rgba(242, 236, 235, 0.737254902);
  text-align: center;
  padding: 20px;
}
#system-homepage-layout header .logo-in {
  max-width: 220px;
  margin: auto;
}
#system-homepage-layout header h1 {
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  margin-top: 20px;
  font-size: 24px;
}
#system-homepage-layout .grid-container {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
#system-homepage-layout .cat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px 45px;
  border-radius: 10px;
  text-decoration: none;
  color: black;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 768px) {
  #system-homepage-layout .cat-box {
    padding: 20px 15px;
  }
}
#system-homepage-layout .cat-box:hover {
  transform: scale(1.05);
}
#system-homepage-layout .cat-box img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}
#system-homepage-layout .cat-box h4 {
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
  margin-top: 5px;
  color: #584124;
}
#system-homepage-layout footer {
  margin-top: 30px;
  padding: 10px;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

/* تحسين التخطيط على الشاشات الصغيرة */
@media (max-width: 768px) {
  #system-homepage-layout .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  #system-homepage-layout .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
#sidebar-menu-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 240px;
}
#sidebar-menu-container .menu-item {
  position: relative;
  background: white;
  padding: 10px;
  text-align: right;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 5px;
  padding-bottom: 0;
}
#sidebar-menu-container .menu-item.active {
  background-color: #2c8d94;
  color: white;
  padding-bottom: 10px;
}
#sidebar-menu-container .menu-item .menu-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100%;
  padding: 10px;
  font-weight: 600;
  font-size: 15px;
}
#sidebar-menu-container .menu-item .icon {
  width: 30px;
  height: 30px;
  margin-left: 20px;
  transition: filter 0.3s ease-in-out;
}
#sidebar-menu-container .menu-item.active .icon {
  filter: invert(1) brightness(2);
}
#sidebar-menu-container .menu-item .submenu {
  position: relative;
  width: 100%;
  background: #2c8d94;
  color: white;
  display: none;
  flex-direction: column;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 10;
}
#sidebar-menu-container .menu-item .submenu a {
  display: block;
  padding: 3px 10px;
  text-decoration: none;
  color: white;
  text-align: right;
  font-size: 13px;
}
#sidebar-menu-container .menu-item .submenu a:hover {
  background: rgba(255, 255, 255, 0.2);
}
#sidebar-menu-container .menu-item.active .submenu {
  display: flex;
}

/* starting sidebar responsive */

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-content {
        width: 100%;
        padding: 10px;
    }

    .sidebar {
        position: fixed;
        left: -250px;
        width: 250px;
        height: 100%;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-toggle {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        background-color: #2c8d94;
        color: white;
        border: none;
        padding: 8px 12px;
        cursor: pointer;
        font-size: 18px;
        border-radius: 4px;
    }
}


/* Default Layout */
.dashboard-container {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
}

/* Sidebar Styling */



/* Responsive Design */
@media (max-width: 768px) {


    .sidebar {
        width: 100%;
        min-height: auto;
        position: relative;
    }

    .dashboard-content {
        width: 100%;
    }
}


/* end sidebar responsive */

#warehouses-list .warehouse-list {
  list-style: none;
  padding: 0;
}
#warehouses-list .warehouse-list .warehouse-item {
  background: white;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #ddd;
  transition: background 0.3s;
  gap: 8px;
}
#warehouses-list .warehouse-list .warehouse-item:hover {
  background: #f1f1f1;
}
#warehouses-list .warehouse-list .warehouse-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-info .warehouse-manager,
#warehouses-list .warehouse-list .warehouse-item .warehouse-info .warehouse-contact {
  font-size: 14px;
  color: #555;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions {
  display: flex;
  gap: 8px;
  align-self: flex-end;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button:hover {
  opacity: 1;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button i {
  font-size: 16px;
  color: #666;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button.edit-btn {
  color: #5bc0de;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button.edit-btn:hover {
  color: #31b0d5;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button.delete-btn {
  color: #d9534f;
}
#warehouses-list .warehouse-list .warehouse-item .warehouse-actions button.delete-btn:hover {
  color: #c9302c;
}

#add-warehouse .form-label {
  font-weight: bold;
  color: #333;
}
#add-warehouse .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}
#add-warehouse textarea {
  resize: none;
}
#add-warehouse .form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
#add-warehouse .form-actions .btn {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}
#add-warehouse .form-actions .btn.btn-primary {
  background: #5bc0de;
  border: none;
}
#add-warehouse .form-actions .btn.btn-primary:hover {
  background: #31b0d5;
}
#add-warehouse .form-actions .btn.btn-secondary {
  background: #d9534f;
  border: none;
  color: white;
}
#add-warehouse .form-actions .btn.btn-secondary:hover {
  background: #c9302c;
}

/* form actions styles */

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
  }
   .form-actions .btn {
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s;
  }
   .form-actions .btn.btn-primary {
    background: #5bc0de;
    border: none;
  }
  .form-actions .btn.btn-primary:hover {
    background: #31b0d5;
  }
   .form-actions .btn.btn-secondary {
    background: #d9534f;
    border: none;
    color: white;
  }
   .form-actions .btn.btn-secondary:hover {
    background: #c9302c;
  }

  /* end form actions */
.pagination {
  margin-top: 20px;
  padding: 0;
}
.pagination .page-item .page-link {
  color: #10847b;
  border: 1px solid #ddd;
  font-size: 14px;
}
.pagination .page-item .page-link:hover {
  background: #10847b;
  color: white;
}
.pagination .page-item.active .page-link {
  background: #10847b;
  color: white;
}
.pagination .page-item.disabled .page-link {
  color: #ccc;
}

#employees-positions {
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: right;
}
#employees-positions .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#employees-positions .header .add-position {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #5bc0de;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#employees-positions .header .add-position i {
  font-size: 16px;
}
#employees-positions .header .add-position:hover {
  background: #31b0d5;
}
#employees-positions .positions-list {
  list-style: none;
  padding: 0;
}
#employees-positions .positions-list .position-item {
  background: white;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  transition: background 0.3s;
}
#employees-positions .positions-list .position-item:hover {
  background: #f1f1f1;
}
#employees-positions .positions-list .position-item .position-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
#employees-positions .positions-list .position-item .position-count {
  font-size: 14px;
  color: #777;
}
#employees-positions .positions-list .position-item .position-count strong {
  font-weight: bold;
  color: #10847b;
}

#employees-list {
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: right;
}
#employees-list .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#employees-list .header h2 {
  font-size: 20px;
  color: #d9534f;
}
#employees-list .header .add-employee {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #5bc0de;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#employees-list .header .add-employee i {
  font-size: 16px;
}
#employees-list .header .add-employee:hover {
  background: #31b0d5;
}
#employees-list .employees {
  list-style: none;
  padding: 0;
}
#employees-list .employees .employee-item {
  background: white;
  padding: 12px;
  border-radius: 5px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
  transition: background 0.3s;
  font-size: 14px;
  color: #333;
  gap: 8px;
  align-items: flex-start;
}
#employees-list .employees .employee-item:hover {
  background: #f1f1f1;
}
#employees-list .employees .employee-item h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
#employees-list .employees .employee-item .employee-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#employees-list .employees .employee-item .employee-info span {
  font-size: 14px;
  color: #555;
}
#employees-list .employees .employee-item .employee-actions {
  display: flex;
  gap: 8px;
  align-self: flex-end;
}
#employees-list .employees .employee-item .employee-actions button {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
}
#employees-list .employees .employee-item .employee-actions button:hover {
  opacity: 1;
}
#employees-list .employees .employee-item .employee-actions button i {
  font-size: 16px;
  color: #666;
}
#employees-list .employees .employee-item .employee-actions button.edit-btn {
  color: #5bc0de;
}
#employees-list .employees .employee-item .employee-actions button.edit-btn:hover {
  color: #31b0d5;
}
#employees-list .employees .employee-item .employee-actions button.delete-btn {
  color: #d9534f;
}
#employees-list .employees .employee-item .employee-actions button.delete-btn:hover {
  color: #c9302c;
}

#attendance {
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: right;
}
#attendance .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#attendance .header h2 {
  font-size: 20px;
  color: #28a745;
}
#attendance .header .add-attendance {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#attendance .header .add-attendance i {
  font-size: 16px;
}
#attendance .header .add-attendance:hover {
  background: #218838;
}
#attendance .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
#attendance .table th {
  background: #10847b;
  color: white;
  font-weight: bold;
  text-align: center;
}
#attendance .table td {
  vertical-align: middle;
}
#attendance .edit-btn,
#attendance .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
  margin-right: 5px;
}
#attendance .edit-btn:hover,
#attendance .delete-btn:hover {
  opacity: 1;
}
#attendance .edit-btn i,
#attendance .delete-btn i {
  font-size: 16px;
}
#attendance .edit-btn {
  color: #17a2b8;
}
#attendance .edit-btn:hover {
  color: #138496;
}
#attendance .delete-btn {
  color: #d9534f;
}
#attendance .delete-btn:hover {
  color: #c9302c;
}

#add-attendance-form {
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: right;
  display: none;
}
#add-attendance-form h3 {
  color: #10847b;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}
#add-attendance-form .form-label {
  font-weight: bold;
  color: #333;
}
#add-attendance-form .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}
#add-attendance-form .form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
#add-attendance-form .form-actions .btn {
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}
#add-attendance-form .form-actions .btn.btn-success {
  background: #10847b;
}
#add-attendance-form .form-actions .btn.btn-success:hover {
  background: #10847b;
}
#add-attendance-form .form-actions .btn.btn-secondary {
  background: #d9534f;
  color: white;
}
#add-attendance-form .form-actions .btn.btn-secondary:hover {
  background: #c9302c;
}

#rewards {
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#rewards .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#rewards .header h2 {
  font-size: 20px;
  color: #10847b;
}
#rewards .header .add-reward {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #10847b;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#rewards .header .add-reward i {
  font-size: 16px;
}
#rewards .header .add-reward:hover {
  background: rgb(10.4864864865, 86.5135135135, 80.6148648649);
}
#rewards .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
#rewards .table th {
  background: #10847b;
  color: white;
  font-weight: bold;
  text-align: center;
}
#rewards .table td {
  vertical-align: middle;
}
#rewards .status {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  color: white;
}
#rewards .status.approved {
  background: #28a745;
}
#rewards .status.pending {
  background: #ffc107;
  color: black;
}
#rewards .status.rejected {
  background: #dc3545;
}
#rewards .edit-btn,
#rewards .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  transition: 0.3s ease-in-out;
  opacity: 0.7;
  margin-right: 5px;
}
#rewards .edit-btn:hover,
#rewards .delete-btn:hover {
  opacity: 1;
}
#rewards .edit-btn i,
#rewards .delete-btn i {
  font-size: 16px;
}
#rewards .edit-btn {
  color: #17a2b8;
}
#rewards .edit-btn:hover {
  color: #138496;
}
#rewards .delete-btn {
  color: #d9534f;
}
#rewards .delete-btn:hover {
  color: #c9302c;
}

#add-reward-form {
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
  display: none;
}
#add-reward-form h3 {
  color: #10847b;
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}
#add-reward-form .form-label {
  font-weight: bold;
  color: #333;
}
#add-reward-form .form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
}
#add-reward-form .form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

#employee-reports {
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#employee-reports .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#employee-reports .header h2 {
  font-size: 20px;
  color: #10847b;
}
#employee-reports .header .report-filter {
  width: 200px;
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
}
#employee-reports .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
#employee-reports .table th {
  background: #10847b;
  color: white;
  font-weight: bold;
  text-align: center;
}
#employee-reports .table td {
  vertical-align: middle;
}
#employee-reports .table .btn-info {
  background: #10847b;
  color: white;
  border: none;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 5px;
}
#employee-reports .table .btn-info:hover {
  background: rgb(10.4864864865, 86.5135135135, 80.6148648649);
}

#shipments-receive {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#shipments-receive .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#shipments-receive .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
#shipments-receive .table th {
  background: #10847b;
  color: white;
}
#shipments-receive .edit-btn,
#shipments-receive .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#shipments-receive .edit-btn:hover,
#shipments-receive .delete-btn:hover {
  opacity: 1;
}
#shipments-receive .edit-btn i,
#shipments-receive .delete-btn i {
  font-size: 16px;
}
#shipments-receive .edit-btn {
  color: #17a2b8;
}
#shipments-receive .delete-btn {
  color: #d9534f;
}

#shipments-distribution {
  margin: auto;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#shipments-distribution .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
#shipments-distribution .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
#shipments-distribution .table th {
  background: #10847b;
  color: white;
}
#shipments-distribution .shipment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 4px 0;
}
#shipments-distribution .shipment-info i {
  color: #007bff;
  font-size: 16px;
}
#shipments-distribution .edit-btn,
#shipments-distribution .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#shipments-distribution .edit-btn:hover,
#shipments-distribution .delete-btn:hover {
  opacity: 1;
}
#shipments-distribution .edit-btn i,
#shipments-distribution .delete-btn i {
  font-size: 16px;
}
#shipments-distribution .edit-btn {
  color: #17a2b8;
}
#shipments-distribution .delete-btn {
  color: #d9534f;
}

#surplus-distribution {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#surplus-distribution .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
#surplus-distribution .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#surplus-distribution .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  min-width: 600px;
}
#surplus-distribution .table th {
  background: #10847b;
  color: white;
  white-space: nowrap;
}
#surplus-distribution .table td {
  white-space: nowrap;
  padding: 10px;
}
#surplus-distribution .shipment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 4px 0;
}
#surplus-distribution .shipment-info i {
  color: #007bff;
  font-size: 16px;
}
#surplus-distribution .edit-btn,
#surplus-distribution .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#surplus-distribution .edit-btn:hover,
#surplus-distribution .delete-btn:hover {
  opacity: 1;
}
#surplus-distribution .edit-btn i,
#surplus-distribution .delete-btn i {
  font-size: 16px;
}
#surplus-distribution .edit-btn {
  color: #17a2b8;
}
#surplus-distribution .delete-btn {
  color: #d9534f;
}

#shipments-return {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#shipments-return .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
#shipments-return .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#shipments-return .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  min-width: 600px;
}
#shipments-return .table th {
  background: #10847b;
  color: white;
  white-space: nowrap;
}
#shipments-return .table td {
  white-space: nowrap;
  padding: 10px;
}
#shipments-return .shipment-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 4px 0;
}
#shipments-return .shipment-info i {
  color: #007bff;
  font-size: 16px;
}
#shipments-return .edit-btn,
#shipments-return .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#shipments-return .edit-btn:hover,
#shipments-return .delete-btn:hover {
  opacity: 1;
}
#shipments-return .edit-btn i,
#shipments-return .delete-btn i {
  font-size: 16px;
}
#shipments-return .edit-btn {
  color: #17a2b8;
}
#shipments-return .delete-btn {
  color: #d9534f;
}

#reports-system {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#reports-system .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
#reports-system .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#reports-system .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  min-width: 700px;
}
#reports-system .table th {
  background: #10847b;
  color: white;
  white-space: nowrap;
}
#reports-system .table td {
  white-space: nowrap;
  padding: 10px;
}
#reports-system .edit-btn,
#reports-system .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#reports-system .edit-btn:hover,
#reports-system .delete-btn:hover {
  opacity: 1;
}
#reports-system .edit-btn i,
#reports-system .delete-btn i {
  font-size: 16px;
}
#reports-system .edit-btn {
  color: #17a2b8;
}
#reports-system .delete-btn {
  color: #d9534f;
}

#feedback-complaints {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  text-align: right;
}
#feedback-complaints .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
#feedback-complaints .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
#feedback-complaints .table {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  width: 100%;
  min-width: 700px;
}
#feedback-complaints .table th {
  background: #10847b;
  color: white;
  white-space: nowrap;
}
#feedback-complaints .table td {
  white-space: nowrap;
  padding: 10px;
}
#feedback-complaints .badge {
  font-size: 14px;
  padding: 5px 10px;
}
#feedback-complaints .edit-btn,
#feedback-complaints .delete-btn {
  border: none;
  padding: 6px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  background: none;
  opacity: 0.7;
  margin-right: 5px;
}
#feedback-complaints .edit-btn:hover,
#feedback-complaints .delete-btn:hover {
  opacity: 1;
}
#feedback-complaints .edit-btn i,
#feedback-complaints .delete-btn i {
  font-size: 16px;
}
#feedback-complaints .edit-btn {
  color: #17a2b8;
}
#feedback-complaints .delete-btn {
  color: #d9534f;
}

footer.growub-footer.layout-1 .footer-out {
  padding: 200px 0 100px 0;
  background: #0D1228;
}
footer.growub-footer.layout-1 .copyright-in {
  background-color: #10847b;
  padding: 15px 0;
  position: relative;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin: 0;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .copyright {
  margin: 0;
  color: #dcdcdc;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .footer-links li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .footer-links li a:hover {
  color: #EA7010;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .back-to-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EA7010;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px !important;
  transition: background-color 0.3s ease;
}
footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .back-to-top:hover {
  background-color: #f8f9fa;
  color: #EA7010;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-1 .copyright-in .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .copyright {
    margin-bottom: 10px;
  }
  footer.growub-footer.layout-1 .copyright-in .footer-bottom-content .back-to-top {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin-top: 10px;
  }
}
footer.growub-footer.layout-2 .footer-out {
  background-image: url(../img/footer-2-ba.jpg);
  background-size: cover;
  padding: 100px 0;
}
footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
  margin-bottom: 45px;
}
footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text .footer-contact-item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
}
footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text .footer-contact-item i {
  background-color: #0f172a;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}
footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text .footer-contact-item h4 {
  color: #333333;
  font-weight: 400;
  font-family: "Cairo", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text {
    flex-direction: column;
  }
  footer.growub-footer.layout-2 .footer-out .footer-contact-icon-text .footer-contact-item {
    flex: 1 1 100%;
  }
}
footer.growub-footer.layout-2 .footer-out .footer-widget.menu-widget ul.footer-menu-links li a::before {
  color: #10847b;
}
footer.growub-footer.layout-2 .footer-out .footer-widget.menu-widget ul.footer-menu-links li a:hover {
  color: #343a40;
}
footer.growub-footer.layout-2 .footer-out .footer-widget.menu-widget ul.footer-menu-links li a:hover::before {
  color: #EA7010;
}
footer.growub-footer.layout-2 .copyright-in {
  background-color: #EBF1FD;
  padding: 15px 0;
  position: relative;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #343a40;
  margin: 0;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .copyright {
  margin: 0;
  color: #343a40;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .footer-links li a {
  text-decoration: none;
  color: #343a40;
  transition: color 0.3s ease;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .footer-links li a:hover {
  color: #EA7010;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .back-to-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #10847b;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px !important;
  transition: background-color 0.3s ease;
}
footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .back-to-top:hover {
  background-color: #EA7010;
  color: #ffffff;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-2 .copyright-in .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .copyright {
    margin-bottom: 10px;
  }
  footer.growub-footer.layout-2 .copyright-in .footer-bottom-content .back-to-top {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin-top: 10px;
  }
}
footer.growub-footer.layout-3 .footer-out {
  padding: 100px 0 100px 0;
  background: #0D1228;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.137254902);
  margin-bottom: 50px;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-logo a {
  display: block;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-logo a img {
  max-height: 40px;
  width: auto;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons li {
  margin-left: 10px;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1e293b;
  color: #ffffff;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons li a:hover {
  background-color: #ff7f0e;
  color: #ffffff;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-3 .footer-out .footer-logo-social {
    flex-direction: column;
    text-align: center;
  }
  footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons {
    margin-top: 15px;
  }
  footer.growub-footer.layout-3 .footer-out .footer-logo-social .footer-social-icons li {
    margin-left: 0;
    margin-right: 10px;
  }
}
footer.growub-footer.layout-3 .copyright {
  background-color: #10847b;
  padding: 15px 0;
  position: relative;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin: 0;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .copyright {
  margin: 0;
  color: #dcdcdc;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .footer-links li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .footer-links li a:hover {
  color: #EA7010;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .back-to-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EA7010;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px !important;
  transition: background-color 0.3s ease;
}
footer.growub-footer.layout-3 .copyright .footer-bottom-content .back-to-top:hover {
  background-color: #f8f9fa;
  color: #EA7010;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-3 .copyright .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.growub-footer.layout-3 .copyright .footer-bottom-content .copyright {
    margin-bottom: 10px;
  }
  footer.growub-footer.layout-3 .copyright .footer-bottom-content .back-to-top {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin-top: 10px;
  }
}
footer.growub-footer.layout-4 {
  background: #0D1228;
  background-image: url(../img/footer-4-ba.png);
  background-size: cover;
}
footer.growub-footer.layout-4 .footer-out {
  padding: 100px 0 100px 0;
}
footer.growub-footer.layout-4 .blocks-footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.284);
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 45px;
  border-right: 1px solid rgba(255, 255, 255, 0.284);
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item:last-child {
  border-right: none;
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #EA7010;
  font-size: 20px;
  border-radius: 50%;
  margin-right: 15px;
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item .content {
  text-align: left;
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item .content .title {
  display: block;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  color: #EA7010;
  margin-bottom: 5px;
}
footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item .content p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-4 .blocks-footer-contact {
    flex-direction: column;
    align-items: flex-start;
  }
  footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
    padding: 20px;
  }
  footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item:last-child {
    border-bottom: none;
  }
  footer.growub-footer.layout-4 .blocks-footer-contact .footer-contact-item .icon {
    margin-right: 10px;
  }
}
footer.growub-footer.layout-4 .copyright-in {
  border-top: 1px solid rgba(254, 254, 254, 0.2235294118);
  padding: 15px 0;
  position: relative;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin: 0;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .copyright {
  margin: 0;
  color: #dcdcdc;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .footer-links {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .footer-links li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .footer-links li a:hover {
  color: #EA7010;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .back-to-top {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #EA7010;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 25px !important;
  transition: background-color 0.3s ease;
}
footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .back-to-top:hover {
  background-color: #f8f9fa;
  color: #EA7010;
}
@media (max-width: 768px) {
  footer.growub-footer.layout-4 .copyright-in .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .copyright {
    margin-bottom: 10px;
  }
  footer.growub-footer.layout-4 .copyright-in .footer-bottom-content .back-to-top {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    margin-top: 10px;
  }
}

#dashboard-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e0e0e0;
  color: black;
  padding: 15px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 1000;
}
.dashboard-header .dashboard-header-left {
  display: flex;
  align-items: center;
}
.dashboard-header .dashboard-menu-toggle {
  background: none;
  border: none;
  color: black;
  font-size: 30px;
  cursor: pointer;
  margin-left: 15px;
}
.dashboard-header h1.dashboard-title {
  font-size: 16px !important;
  margin: 0 !important;
}
.dashboard-header .dashboard-header-icons {
  display: flex;
  align-items: center;
}
.dashboard-header .dashboard-header-icons .dashboard-notifications {
  position: relative;
  margin-left: 15px;
}
.dashboard-header .dashboard-header-icons .dashboard-notifications i {
  font-size: 20px;
}
.dashboard-header .dashboard-header-icons .dashboard-notifications .dashboard-badge {
  position: absolute;
  top: -5px;
  right: -10px;
  background-color: red;
  color: white;
  font-size: 12px;
  border-radius: 50%;
  padding: 5px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 1;
}
.dashboard-header .dashboard-header-icons .dashboard-logout {
  color: black;
  text-decoration: none;
  font-size: 16px;
}

.dashboard-container {
  display: flex;
  margin-top: 60px;
  flex: 1;
}

.dashboard-content {
  flex: 1;
  padding: 20px ;
  background-color: #ffffff;
  transition: margin-right 0.3s ease-in-out;
  margin-right: auto;
  margin-left: auto;
}
.dashboard-content h2#page-title {
  font-size: 30px !important;
  border-bottom: 1px solid #cfcece;
  padding: 15px 0;
  margin-bottom: 30px !important;
}

.dashboard-sidebar {
  width: 280px;
  background-color: #f0f0f0;
  color: black;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  position: relative;
  right: 0;
}

.dashboard-sidebar.hidden {
  display: none;
}

.dashboard-content.expanded {
  margin-right: 0;
}

.dashboard-footer {
  background-color: #e0e0e0;
  color: black;
  text-align: center;
  padding: 10px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .dashboard-sidebar {
    position: fixed;
    right: -280px;
    top: 60px;
    height: calc(100vh - 60px);
    transition: right 0.3s ease-in-out;
  }
  .dashboard-sidebar.hidden {
    right: 0;
    display: block;
  }
  .dashboard-container {
    flex-direction: column;
  }
}
.breadcrumb {
  background-color: #f8eee9;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  direction: rtl;
  text-align: right;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: " >> ";
  color: #a39089;
  padding: 0 5px;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #6c6968;
}

.breadcrumb-item.active {
  color: #6c6968;
}

.nile-menu-in.light .menu-out a.mobile-toggle-default .menu-toggle span {
  background-color: #f8f9fa;
}
.nile-menu-in.light .menu-out ul.nile-menu li.nile-menu-item a.nile-menu-link {
  color: #f8f9fa;
}
.nile-menu-in.light .menu-out ul.nile-menu li.nile-menu-item.nile-menu-item-has-children > a.nile-menu-link:after,
.nile-menu-in.light .menu-out ul.nile-menu li.nile-submenu-item.nile-menu-item-has-children > a.nile-menu-link:after {
  color: #f8f9fa;
}
.nile-menu-in.light .menu-out ul.nile-menu ul.nile-submenu a {
  color: #343a40 !important;
}

/* Menu */
.menu-out {
  position: relative;
  flex: 0 1 auto;
  min-width: 30px;
  /* Toggle */
  /* menu */
}
.menu-out a.mobile-toggle-default {
  display: none;
  line-height: 1;
  text-decoration: none;
  border-radius: 4px;
  font-size: 21px;
  position: absolute;
  left: 0;
  top: 50%;
}
.menu-out a.mobile-toggle-default .menu-toggle {
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(0deg);
  height: 20px;
  width: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 300ms ease;
  align-items: flex-end;
}
.menu-out a.mobile-toggle-default .menu-toggle span {
  height: 4px;
  width: 30px;
  background-color: #333;
  transition: width 200ms ease;
}
.menu-out a.mobile-toggle-default .menu-toggle span:nth-child(1) {
  width: 80%;
  transition-delay: 200ms;
}
.menu-out a.mobile-toggle-default .menu-toggle span:nth-child(2) {
  width: 100%;
}
.menu-out a.mobile-toggle-default .menu-toggle span:nth-child(3) {
  width: 60%;
  transition-delay: 400ms;
}
.menu-out a.mobile-toggle-default .menu-toggle span:nth-child(4) {
  position: absolute;
  top: -28%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 4px;
  height: 0;
  transition: height 400ms;
}
.menu-out a.mobile-toggle-default.menu-toggeled {
  transform: translate(-50%, -50%) rotate(45deg);
  transition-delay: 400ms;
}
.menu-out a.mobile-toggle-default.menu-toggeled span:nth-child(1),
.menu-out a.mobile-toggle-default.menu-toggeled span:nth-child(3) {
  width: 0;
  transition: 200ms ease;
}
.menu-out a.mobile-toggle-default.menu-toggeled span:nth-child(4) {
  height: 30px;
  transition: height 200ms ease;
  transition-delay: 200ms;
}
.menu-out ul.nile-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-out ul.nile-menu li.nile-menu-item,
.menu-out ul.nile-menu li.nile-submenu-item {
  position: relative;
  /* Icon for main menu items with children - arrow down */
}
.menu-out ul.nile-menu li.nile-menu-item a.nile-menu-link,
.menu-out ul.nile-menu li.nile-menu-item a.nile-submenu-link,
.menu-out ul.nile-menu li.nile-submenu-item a.nile-menu-link,
.menu-out ul.nile-menu li.nile-submenu-item a.nile-submenu-link {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: #343a40;
  transition: opacity 0.3s ease, color 0.3s ease;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: -0.1px;
}
.menu-out ul.nile-menu li.nile-menu-item a.nile-menu-link:hover,
.menu-out ul.nile-menu li.nile-menu-item a.nile-submenu-link:hover,
.menu-out ul.nile-menu li.nile-submenu-item a.nile-menu-link:hover,
.menu-out ul.nile-menu li.nile-submenu-item a.nile-submenu-link:hover {
  color: #000;
}
.menu-out ul.nile-menu li.nile-menu-item.hovered:not(:hover) > .nile-menu-link,
.menu-out ul.nile-menu li.nile-submenu-item.hovered:not(:hover) > .nile-menu-link {
  opacity: 0.6;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.menu-out ul.nile-menu li.nile-menu-item.nile-menu-item-has-children > a.nile-menu-link:after,
.menu-out ul.nile-menu li.nile-submenu-item.nile-menu-item-has-children > a.nile-menu-link:after {
  content: "\f078";
  /* Unicode for down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 13px;
  margin-left: 8px;
  position: relative;
  right: auto;
  /* Remove right positioning */
  color: #343a40;
}
.menu-out ul.nile-menu li.nile-menu-item.nile-submenu-item-has-children,
.menu-out ul.nile-menu li.nile-submenu-item.nile-submenu-item-has-children {
  position: relative;
}
.menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu,
.menu-out ul.nile-menu li.nile-submenu-item ul.nile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  border: 1px solid #F4EDE2;
  background-color: #fff;
  z-index: 1000;
  width: 220px;
  border-radius: 3px;
}
.menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu a.nile-menu-link,
.menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu a.nile-submenu-link,
.menu-out ul.nile-menu li.nile-submenu-item ul.nile-submenu a.nile-menu-link,
.menu-out ul.nile-menu li.nile-submenu-item ul.nile-submenu a.nile-submenu-link {
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: -0.1px;
  padding: 15px 20px;
  border-bottom: 1px solid #F4EDE2;
  width: 100%;
  color: dimgrey;
}
.menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu ul.nile-submenu,
.menu-out ul.nile-menu li.nile-submenu-item ul.nile-submenu ul.nile-submenu {
  top: 0;
  left: 100%;
  margin-left: 0;
  margin-top: 0;
  width: 180px;
  border-radius: 8px;
}

#nile-userdata {
  display: none;
  /* Hide userdata by default */
}

ul.nile-menu-mobile {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.nile-menu-mobile ul.nile-submenu {
  display: none;
  list-style: none;
  padding: 0;
}
ul.nile-menu-mobile ul.nile-submenu ul {
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0;
}
ul.nile-menu-mobile li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f8f8f8;
}
ul.nile-menu-mobile li a:hover {
  background-color: #f8f8f8;
}
ul.nile-menu-mobile li:nth-child(odd) {
  background-color: #fff;
}
ul.nile-menu-mobile li:nth-child(even) {
  background-color: #f2f2f2;
}
ul.nile-menu-mobile li.nile-menu-item-has-children > a.nile-menu-link:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
  margin-left: 10px;
}
ul.nile-menu-mobile li.nile-menu-item-has-children.active > a.nile-menu-link:after {
  content: "\f077";
}
ul.nile-menu-mobile li.nile-menu-item-has-children.active > ul.nile-submenu {
  display: block;
}

@media (max-width: 1024px) {
  .menu-out a.mobile-toggle-default {
    display: block;
  }
  .menu-out ul.nile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    z-index: 1000;
  }
  .menu-out ul.nile-menu.active {
    display: flex;
  }
  .menu-out ul.nile-menu li.nile-menu-item {
    width: 100%;
  }
  .menu-out ul.nile-menu li.nile-menu-item.nile-menu-item-has-children > a:after {
    content: "\f078";
    /* Unicode for down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: auto;
    right: auto;
    /* Remove right positioning */
  }
  .menu-out ul.nile-menu li.nile-menu-item.active > a:after {
    content: "\f077";
    /* Unicode for up arrow */
  }
  .menu-out ul.nile-menu li.nile-menu-item a.nile-menu-link {
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #333;
  }
  .menu-out ul.nile-menu li.nile-menu-item a.nile-menu-link:hover {
    background-color: #f8f8f8;
  }
  .menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu {
    display: none;
    flex-direction: column;
    padding: 0;
  }
  .menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu li.nile-submenu-item a.nile-submenu-link {
    padding: 15px 20px;
    width: 100%;
    box-sizing: border-box;
    color: #333;
  }
  .menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu li.nile-submenu-item a.nile-submenu-link:hover {
    background-color: #f8f8f8;
  }
  .menu-out ul.nile-menu li.nile-menu-item ul.nile-submenu li.nile-submenu-item.nile-submenu-item-has-children > a.nile-submenu-link:after {
    content: "\f054";
    /* Unicode for right arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.75em;
    position: absolute;
    right: 20px;
    /* 20px from the right edge */
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
  }
}

/* login styles */


.login-form-box {
    min-width: 320px;
    margin: 30px auto;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .login-form-box {
      min-width: auto;
      width: 100%;
      margin: 0;
    }
  }
  .login-form-box h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
  }
  .login-form-box form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .login-form-box .form-group {
    text-align: right;
  }
  .login-form-box .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #555;
  }
  .login-form-box .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border 0.3s ease-in-out;
    background: #f8f8f8;
  }
  .login-form-box .form-group input:focus {
    border-color: #10847b;
    background: #fff;
    outline: none;
  }
  .login-form-box .form-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .login-form-box .form-actions .btn {
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
  }
  .login-form-box .form-actions .btn.btn-primary {
    background: #10847b;
    color: white;
  }
  .login-form-box .form-actions .btn.btn-primary:hover {
    background: #10847b;
  }
  .login-form-box .login-footer {
    margin-top: 15px;
    font-size: 13px;
  }
  .login-form-box .login-footer a {
    text-decoration: none;
    color: #2271b1;
  }
  .login-form-box .login-footer a:hover {
    color: #135e96;
  }
