@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 20px;
  background-color: #fff6db;
  color: #0a1629;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

button {
  cursor: pointer;
}

.submit_btn {
  background-color: #ffc21a;
  padding: 13px 16px;
  border-radius: 10px;
  border: transparent;
  color: #0a1629;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  max-width: 266px;
  width: 100%;
  margin: 0 auto;
}

label {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0a1629;
}

@media screen and (max-width: 767px) {
  label {
    font-size: 14px;
    font-weight: 600;
  }
}

.auth-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #7d8592;
}

@media screen and (max-width: 767px) {
  .auth-label {
    font-size: 14px;
    font-weight: 600;
  }
}

.input_blk {
  position: relative;
  padding: 13px 15px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #3f8cff99;
}

.input_blk.auth-input {
  border-color: #7d8592;
  border-radius: 14px;
}

.input_blk.auth-input input:focus,
.input_blk.auth-input input :active,
.input_blk.auth-input input :focus-within,
.input_blk.auth-input input :hover,
.input_blk.auth-input input :focus-visible {
  border-color: #3f8cff99;
  outline-offset: 0;
  outline-offset: transparent;
  outline: transparent auto 0px;
}

.input_blk .input-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
}

.input_blk input {
  width: 100%;
  height: 100%;
  background-color: #ffff;
  color: #0a1629;
  color: #0a1629;
  font-weight: 400;
  background-color: transparent;
  border: transparent;
}

.input_blk input::-webkit-input-placeholder {
  color: #7d8592;
  font-weight: 400;
}

.input_blk input:-ms-input-placeholder {
  color: #7d8592;
  font-weight: 400;
}

.input_blk input::-ms-input-placeholder {
  color: #7d8592;
  font-weight: 400;
}

.input_blk input::placeholder {
  color: #7d8592;
  font-weight: 400;
}

.input_blk input:focus,
.input_blk input :active,
.input_blk input :focus-within,
.input_blk input :hover,
.input_blk input :focus-visible {
  border-color: #3f8cff99;
  outline-offset: 0;
  outline-offset: transparent;
  outline: transparent auto 0px;
}

.input_blk .primary-button {
  background-color: #ffc21a;
  font-size: 16px;
  line-height: 20px;
  border-radius: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-color: transparent;
}

.content_blk {
  height: calc(100vh - 100px);
  overflow-y: auto;
}

/* Hide scrollbar but keep scroll functionality */
.hide-scrollbar {
  overflow: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

#admin-panel {
  padding: 30px 20px;
}

#admin-panel .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 42px;
}

#admin-panel .layout .sidebar {
  background: white;
  padding: 25px 11px 30px 16px;
  height: calc(100vh - 60px);
  min-width: 233px;
  -webkit-box-shadow: 0px 6px 58px 0px #c4cbd61a;
          box-shadow: 0px 6px 58px 0px #c4cbd61a;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 992px) {
  #admin-panel .layout .sidebar {
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 10;
    height: 100vh;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
  }
}

#admin-panel .layout .sidebar .fa-close {
  display: none;
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  font-size: 22px;
  color: #7d8592;
}

@media screen and (max-width: 992px) {
  #admin-panel .layout .sidebar .fa-close {
    display: block;
  }
}

#admin-panel .layout .sidebar .nav_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 5px;
  min-height: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(125, 133, 146, 0.3) transparent;
}

#admin-panel .layout .sidebar .nav_container::-webkit-scrollbar {
  width: 6px;
}

#admin-panel .layout .sidebar .nav_container::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

#admin-panel .layout .sidebar .nav_container::-webkit-scrollbar-thumb {
  background: rgba(125, 133, 146, 0.3);
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#admin-panel .layout .sidebar .nav_container::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 133, 146, 0.5);
}

#admin-panel .layout .sidebar .nav_container .logo {
  width: 80px;
  height: 82px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

#admin-panel .layout .sidebar .nav_container .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding-bottom: 20px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11px 15px 11px 8px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item.active {
  background: #ffc21a;
  border-radius: 10px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item.active .left_blk .nav_icon {
  width: 24px;
  height: 24px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item.active .left_blk .nav_icon svg {
  stroke: #0a1629;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item.active .left_blk .item_name {
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0a1629;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item .left_blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item .left_blk .nav_icon {
  width: 24px;
  height: 24px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item .left_blk .item_name {
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_item .fa-arrow-right-long {
  color: #7d8592;
}

#admin-panel .layout .sidebar .nav_container .nav_list li span {
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
}

#admin-panel .layout .sidebar .logout_blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 15px;
  border-top: 1px solid #f1f3f5;
  margin-top: auto;
}

#admin-panel .layout .sidebar .logout_blk .icon_blk {
  width: 24px;
  height: 24px;
}

#admin-panel .layout .sidebar .logout_blk .logout {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel .layout .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#admin-panel #header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

#admin-panel #header .input_blk {
  border-color: transparent !important;
  background-color: #ffff;
  -webkit-box-shadow: 0px 6px 58px 0px #c4cbd61a;
          box-shadow: 0px 6px 58px 0px #c4cbd61a;
  border-radius: 14px;
  max-width: 345px;
  padding: 10px 15px !important;
  padding-left: 45px !important;
  height: 40px !important;
  width: 100%;
}

#admin-panel #header .input_blk input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel #header .input_blk input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel #header .input_blk input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel #header .input_blk input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #7d8592;
}

#admin-panel #header .input_blk .search_icon {
  position: absolute;
  left: 20px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#admin-panel #header .notification_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

#admin-panel #header .notification_container .icon_blk {
  padding: 10px;
  border-radius: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffff;
  cursor: pointer;
}

#admin-panel #header .notification_container .icon_blk .fa-bell {
  font-size: 20px;
  color: #0a1629;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper {
  position: relative;
  width: 152px;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .custom-dropdown {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  -webkit-box-shadow: 0 0 0 1px #ffffff;
          box-shadow: 0 0 0 1px #ffffff;
  cursor: pointer;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .custom-dropdown .avatar {
  width: 25px;
  height: 25px;
  border-radius: 75%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 8px;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .custom-dropdown .username {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: #0a1629;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .custom-dropdown .arrow {
  font-size: 12px;
  color: #0a1629;
  margin-left: 8px;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .dropdown-menu {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .dropdown-menu .dropdown-item {
  padding: 10px 12px;
  font-size: 14px;
  color: #0b132a;
  cursor: pointer;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper .dropdown-menu .dropdown-item:hover {
  background-color: #f4f4f4;
}

#admin-panel #header .notification_container .custom-dropdown-wrapper.open .dropdown-menu {
  display: block;
}

#admin-panel #header .notification_container .toggle-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border-radius: 24px;
  padding: 4px;
  gap: 8px;
  -webkit-box-shadow: 0px 6px 58px 0px #C4CBD61A;
          box-shadow: 0px 6px 58px 0px #C4CBD61A;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#admin-panel #header .notification_container .toggle-timer .manual-label {
  padding: 13px 25px 13px 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #0a1629;
  white-space: nowrap;
}

#admin-panel #header .notification_container .toggle-timer .timer-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #ffc21a;
  color: #0b1222;
  border: none;
  border-radius: 9999px;
  padding: 13px 25px 13px 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

#admin-panel #header .notification_container .toggle-timer .timer-button .play-icon {
  font-size: 14px;
  color: #0b1222;
}

#admin-panel #header .notification_container .toggle-timer .timer-button:hover {
  background: #ffb300;
}

/* sidebar dropdown */
#admin-panel .layout .sidebar .nav_container .nav_list li #employeeGroup,
#admin-panel .layout .sidebar .nav_container .nav_list li #requestGroup,
#admin-panel .layout .sidebar .nav_container .nav_list li #ordersGroup {
  display: block !important;
}

.sidebar .nav_group {
  position: relative;
}

.sidebar .nav_group_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.sidebar .nav_group_toggle:focus {
  outline: none;
}

.sidebar .nav_group .caret {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(10, 22, 41, 0.06);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.sidebar .nav_group .caret i {
  font-size: 12px;
  color: #475467;
}

.sidebar .nav_group.open .caret {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sidebar .nav_dropdown_panel {
  display: none;
  margin-top: 6px;
  border-radius: 10px;
}

.sidebar .nav_group.open .nav_dropdown_panel {
  display: block;
}

.sidebar .nav_dropdown_panel .sub_link {
  display: block;
  color: #7d8592;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px 8px 58px;
  border-radius: 8px;
}

.sidebar .nav_dropdown_panel .sub_link:hover {
  background: rgba(10, 22, 41, 0.08);
  color: #0a1629;
}

.sidebar .nav_dropdown_panel .sub_link.active {
  background: #ffc21a;
  color: #0a1629;
  font-weight: 600;
}

.input_blk select {
  width: 100%;
  height: 100%;
  padding: 0;
  /* or adjust if needed */
  border: none;
  background-color: transparent;
  color: #0a1629;
  font-weight: 400;
  outline: none;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
  height: 48px !important;
  border: 1px solid rgba(63, 140, 255, 0.6) !important;
  border-radius: 8px !important;
  padding: 8px 15px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  font-size: 14px;
  color: #0a1629;
}

.select2-selection__rendered {
  line-height: 28px !important;
}

.select2-selection__arrow {
  height: 100% !important;
}

.product-section {
  margin-bottom: 20px;
}

.product-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.product-select,
.product-qty {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.product-select {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.product-qty {
  width: 80px;
}

.btn-add,
.btn-remove {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.btn-remove {
  background-color: #dc3545;
}

.upload-container {
  max-width: 100%;
  margin: 0 auto;
}

label {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  color: #333;
}

.upload-box {
  display: block;
  width: 100%;
  min-height: 200px;
  border: 2px dashed #ccc;
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.upload-box:hover {
  border-color: #007bff;
  background-color: #f8f9ff;
}

.upload-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  min-height: 160px;
  position: relative;
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.file-input {
  display: none;
}

.browse {
  color: #007bff;
  text-decoration: underline;
}

.preview-image {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: white;
  color: #333;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.hidden {
  display: none !important;
}

/* Upload icon SVG as background for fallback */
.upload-icon-default {
  width: 48px;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M7 16a4 4 0 01-.88-7.903A5 5 0 1115.9 6L16 6a5 5 0 011 9.9M15 13l-3-3m0 0l-3 3m3-3v12'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  margin-bottom: 10px;
}

/* Global Action Buttons Styling */
.action-buttons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.action-btn-enhanced {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  font-family: "Nunito Sans", sans-serif;
}

.action-btn-enhanced:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.action-btn-enhanced:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.action-btn-enhanced.btn-primary {
  background: linear-gradient(135deg, #ffc21a, #ffb300);
  color: #0a1629;
  padding: 0 18px;
}

.action-btn-enhanced.btn-primary:hover {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  color: #0a1629;
}

.action-btn-enhanced.btn-success {
  background: linear-gradient(135deg, #28a745, #20913a);
  color: white;
}

.action-btn-enhanced.btn-success:hover {
  background: linear-gradient(135deg, #20913a, #1e7e34);
  color: white;
}

.action-btn-enhanced.btn-edit {
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  width: 36px;
  height: 36px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.action-btn-enhanced.btn-edit i {
  margin-right: 0 !important;
}

.action-btn-enhanced.btn-edit:hover {
  background: linear-gradient(135deg, #1976D2, #1565C0);
  color: white;
}

.action-btn-enhanced.btn-delete,
.action-btn-enhanced.btn-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  width: 36px;
  height: 36px;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.action-btn-enhanced.btn-delete i,
.action-btn-enhanced.btn-danger i {
  margin-right: 0 !important;
}

.action-btn-enhanced.btn-delete:hover,
.action-btn-enhanced.btn-danger:hover {
  background: linear-gradient(135deg, #c82333, #bd2130);
  color: white;
}

.action-btn-enhanced.btn-info {
  background: linear-gradient(135deg, #17a2b8, #138496);
  color: white;
  padding: 0 18px;
}

.action-btn-enhanced.btn-info:hover {
  background: linear-gradient(135deg, #138496, #117a8b);
  color: white;
}

.action-btn-enhanced.btn-warning {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  color: #0a1629;
}

.action-btn-enhanced.btn-warning:hover {
  background: linear-gradient(135deg, #e0a800, #d39e00);
  color: #0a1629;
}

.action-btn-enhanced i {
  font-size: 16px;
  margin-right: 8px;
}

.action-btn-enhanced[title]:before {
  content: attr(title);
  position: absolute;
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(10, 22, 41, 0.9);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1000;
  font-weight: 500;
}

.action-btn-enhanced[title]:hover:before {
  opacity: 1;
}

.action-btn-enhanced:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none !important;
          transform: none !important;
}

.action-btn-enhanced .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.store-edit-upload-container {
  width: 100%;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.store-edit-upload-box {
  border: 2px dashed #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  display: block;
}

.store-edit-upload-content {
  position: relative;
  min-height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.store-edit-upload-icon-default {
  text-align: center;
}

.store-edit-browse {
  color: #007bff;
  text-decoration: underline;
}

.store-edit-file-input {
  display: none;
}

.store-edit-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.store-edit-close-btn.hidden {
  display: none;
}

.store-edit-preview-image {
  max-width: 200px;
  max-height: 200px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dropdown-item a,
.dropdown-item a:hover,
.dropdown-item a:active,
.dropdown-item a:focus {
  color: inherit;
  /* same color as parent */
  text-decoration: none;
  /* no underline */
  outline: none;
  /* remove focus outline */
}

/* Select2 custom styling if you're using it */
.select2-container .select2-selection--single {
  height: 38px;
  border: 1px solid #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.actions-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10px;
}

.table-container {
  width: 100%;
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  font-size: 0.95rem;
}

.table .table-header {
  background-color: #f8f9fa;
}

.table .table-header th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #344767;
  border-bottom: 2px solid #e9ecef;
  white-space: nowrap;
}

.table .table-body tr:hover {
  background-color: #f8f9fa;
}

.table .table-body tr:not(:last-child) {
  border-bottom: 1px solid #e9ecef;
}

.table .table-body td {
  padding: 1rem;
  color: #67748e;
  vertical-align: middle;
}

.table .table-body td.product-name {
  font-weight: 500;
  color: #344767;
}

.table .order-status-tag {
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}

.table .order-status-tag.status-pending {
  background-color: #fff8e1;
  color: #f59e0b;
}

.table .order-status-tag.status-completed {
  background-color: #e8f5e9;
  color: #22c55e;
}

.table .order-status-tag.status-cancelled {
  background-color: #fee2e2;
  color: #ef4444;
}

.table .order-action-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.table .order-action-group .action-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.table .order-action-group .action-btn.details-btn {
  background-color: #e2e8f0;
  color: #64748b;
}

.table .order-action-group .action-btn.details-btn:hover {
  background-color: #cbd5e1;
}

.table .order-action-group .action-btn.edit-btn {
  background-color: #dbeafe;
  color: #3b82f6;
}

.table .order-action-group .action-btn.edit-btn:hover {
  background-color: #bfdbfe;
}

.table .order-action-group .action-btn.complete-btn {
  background-color: #dcfce7;
  color: #22c55e;
}

.table .order-action-group .action-btn.complete-btn:hover {
  background-color: #bbf7d0;
}

.table .order-action-group .action-btn.cancel-btn {
  background-color: #fee2e2;
  color: #ef4444;
}

.table .order-action-group .action-btn.cancel-btn:hover {
  background-color: #fecaca;
}

.table .order-action-group .action-btn .btn-label {
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .table .order-action-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .table .order-action-group .action-btn .btn-label {
    display: none;
  }
}

.dashboard-quick-section {
  margin-top: 40px;
  width: 100%;
  background-color: transparent;
}

.dashboard-quick-section .dashboard-section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
  padding: 0;
  gap: 20px;
}

.dashboard-quick-section .dashboard-section-header .dashboard-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #0a1629;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.35);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.35);
  border: none;
  white-space: nowrap;
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn i {
  font-size: 14px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 6px 16px rgba(255, 194, 26, 0.5);
          box-shadow: 0 6px 16px rgba(255, 194, 26, 0.5);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-decoration: none;
  color: #0a1629;
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn:hover i {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.dashboard-quick-section .dashboard-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 0;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background-color: #ffff;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffff;
  font-size: 15px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-head {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-head th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: #0a1629;
  border-bottom: 2px solid #dee2e6;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-head th:first-child {
  border-top-left-radius: 12px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-head th:last-child {
  border-top-right-radius: 12px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body tr {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f3f5;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body tr:hover {
  background-color: #f8f9fa;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body tr:last-child {
  border-bottom: none;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td {
  padding: 16px 20px;
  color: #495057;
  vertical-align: middle;
  font-size: 15px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td.dashboard-order-id {
  font-weight: 600;
  color: #0a1629;
  font-size: 15px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td.dashboard-amount {
  font-weight: 500;
  color: #0a1629;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td.dashboard-amount .dirham-symbol {
  margin-right: 4px;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td.dashboard-commission {
  font-weight: 500;
  color: #6c757d;
}

.dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td.dashboard-created-by {
  font-weight: 500;
  color: #495057;
}

@media screen and (max-width: 992px) {
  .dashboard-quick-section {
    margin-top: 30px;
  }
  .dashboard-quick-section .dashboard-section-header .dashboard-section-title {
    font-size: 24px;
  }
  .dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .dashboard-quick-section {
    margin-top: 25px;
  }
  .dashboard-quick-section .dashboard-section-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  .dashboard-quick-section .dashboard-section-header .dashboard-section-title {
    font-size: 20px;
  }
  .dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn {
    padding: 10px 18px;
    font-size: 14px;
    gap: 8px;
  }
  .dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn i {
    font-size: 12px;
  }
  .dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table {
    font-size: 14px;
  }
  .dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-head th {
    padding: 14px 12px;
    font-size: 12px;
  }
  .dashboard-quick-section .dashboard-table-wrapper .dashboard-orders-table .dashboard-table-body td {
    padding: 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .dashboard-quick-section .dashboard-section-header .dashboard-header-actions .dashboard-view-all-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.quic-links {
  margin-top: 30px;
  width: 100%;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a1629;
  margin: 0;
  line-height: 1.2;
}

.section-header .header-actions .view-all-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
}

.section-header .header-actions .view-all-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-decoration: none;
}

.section-header .header-actions .view-all-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.section-header .header-actions .view-all-btn i {
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.section-header .header-actions .view-all-btn:hover i {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

@media screen and (max-width: 768px) {
  .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .section-header h2 {
    font-size: 1.25rem;
  }
  .section-header .header-actions {
    width: 100%;
  }
  .section-header .header-actions .view-all-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.5rem;
}

.status:has(🔴) {
  background-color: #fee2e2;
  color: #dc2626;
}

.status:has(🟡) {
  background-color: #fef3c7;
  color: #d97706;
}

.status:has(🟢) {
  background-color: #dcfce7;
  color: #16a34a;
}

.orders-filter-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e9ecef;
}

.orders-filter-section .filter-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e9ecef;
}

.orders-filter-section .filter-title i {
  color: #ffc21a;
  font-size: 18px;
}

.orders-filter-section .filter-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0a1629;
  margin: 0;
}

.orders-filter-section .filters-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.orders-filter-section .filters-grid .filter-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.orders-filter-section .filters-grid .filter-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #344767;
  margin-bottom: 0;
}

.orders-filter-section .filters-grid .filter-group .filter-input,
.orders-filter-section .filters-grid .filter-group .filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #0a1629;
  background-color: #ffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-family: 'Nunito Sans', sans-serif;
}

.orders-filter-section .filters-grid .filter-group .filter-input:focus,
.orders-filter-section .filters-grid .filter-group .filter-select:focus {
  outline: none;
  border-color: #ffc21a;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
          box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
}

.orders-filter-section .filters-grid .filter-group .filter-input:hover,
.orders-filter-section .filters-grid .filter-group .filter-select:hover {
  border-color: #9ca3af;
}

.orders-filter-section .filters-grid .filter-group .filter-input[type="date"] {
  cursor: pointer;
}

.orders-filter-section .filters-grid .filter-group .filter-input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.orders-filter-section .filters-grid .filter-group .filter-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: rgba(255, 194, 26, 0.1);
}

.orders-filter-section .filter-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.orders-filter-section .filter-actions .filter-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Nunito Sans', sans-serif;
  text-decoration: none;
}

.orders-filter-section .filter-actions .filter-btn i {
  font-size: 14px;
}

.orders-filter-section .filter-actions .filter-btn.btn-apply {
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
}

.orders-filter-section .filter-actions .filter-btn.btn-apply:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.orders-filter-section .filter-actions .filter-btn.btn-apply:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.orders-filter-section .filter-actions .filter-btn.btn-clear {
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: #ffff;
  -webkit-box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
          box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.orders-filter-section .filter-actions .filter-btn.btn-clear:hover {
  background: linear-gradient(135deg, #5a6268 0%, #4e555b 100%);
  -webkit-box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
          box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.orders-filter-section .filter-actions .filter-btn.btn-clear:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .orders-filter-section {
    padding: 20px;
  }
  .orders-filter-section .filters-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
  .orders-filter-section .filter-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .orders-filter-section .filter-actions .filter-btn {
    width: 100%;
  }
}

.orders-top-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.orders-top-actions .actions-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.orders-top-actions .actions-left .page-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a1629;
  margin: 0;
}

.orders-top-actions .actions-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.orders-top-actions .actions-right .action-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
}

.orders-top-actions .actions-right .action-button i {
  font-size: 14px;
}

.orders-top-actions .actions-right .action-button.btn-download {
  background: linear-gradient(135deg, #28a745 0%, #20913a 100%);
  color: #ffff;
  -webkit-box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
          box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.orders-top-actions .actions-right .action-button.btn-download:hover {
  background: linear-gradient(135deg, #20913a 0%, #1e7e34 100%);
  -webkit-box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
          box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.orders-top-actions .actions-right .action-button.btn-add-new {
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
}

.orders-top-actions .actions-right .action-button.btn-add-new svg {
  width: 16px;
  height: 16px;
  fill: #0a1629;
}

.orders-top-actions .actions-right .action-button.btn-add-new:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.orders-top-actions .actions-right .action-button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .orders-top-actions .actions-left,
  .orders-top-actions .actions-right {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .orders-top-actions .actions-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .orders-top-actions .actions-right .action-button {
    width: 100%;
  }
}

.invoice-dropdown {
  position: relative;
  display: inline-block;
}

.invoice-dropdown .invoice-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: #ffff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 6px rgba(23, 162, 184, 0.3);
          box-shadow: 0 2px 6px rgba(23, 162, 184, 0.3);
}

.invoice-dropdown .invoice-btn i {
  font-size: 13px;
}

.invoice-dropdown .invoice-btn:hover {
  background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
  -webkit-box-shadow: 0 4px 10px rgba(23, 162, 184, 0.4);
          box-shadow: 0 4px 10px rgba(23, 162, 184, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.invoice-dropdown .invoice-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.invoice-dropdown .invoice-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1000;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.invoice-dropdown .invoice-dropdown-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #344767;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f3f5;
}

.invoice-dropdown .invoice-dropdown-menu a:last-child {
  border-bottom: none;
}

.invoice-dropdown .invoice-dropdown-menu a i {
  font-size: 14px;
  width: 18px;
  text-align: center;
}

.invoice-dropdown .invoice-dropdown-menu a:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding-left: 20px;
}

.invoice-dropdown .invoice-dropdown-menu a.customer-copy i {
  color: #3b82f6;
}

.invoice-dropdown .invoice-dropdown-menu a.staff-copy i {
  color: #f59e0b;
}

.top_sec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.top_sec .top_left .title {
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0px;
  margin-bottom: 0px;
  color: #0a1629;
}

.top_sec .add-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: #ffc21a;
  border: none;
  border-radius: 10px;
  color: #0a1629;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.top_sec .add-btn:hover {
  background: #ffb300;
  text-decoration: none;
  color: #0a1629;
}

.top_sec .add-btn .plus-icon {
  width: 19px;
  height: 19px;
  fill: white;
  background-color: #0a1629;
  border-radius: 75%;
}

@media screen and (max-width: 768px) {
  .top_sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .top_sec .top_left .title {
    font-size: 20px;
  }
  .top_sec .add-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.product-hierarchy-container {
  background: #ffff;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-hierarchy-container .table-responsive {
  overflow-x: auto;
  margin-bottom: 20px;
}

.product-hierarchy-container .product-hierarchy-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffff;
}

.product-hierarchy-container .product-hierarchy-table thead {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-hierarchy-container .product-hierarchy-table thead tr th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  color: #0a1629;
  border-bottom: 2px solid #dee2e6;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-hierarchy-container .product-hierarchy-table thead tr th:first-child {
  border-top-left-radius: 8px;
}

.product-hierarchy-container .product-hierarchy-table thead tr th:last-child {
  border-top-right-radius: 8px;
}

.product-hierarchy-container .product-hierarchy-table tbody tr {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f1f3f5;
}

.product-hierarchy-container .product-hierarchy-table tbody tr:hover {
  background-color: #f8f9fa;
}

.product-hierarchy-container .product-hierarchy-table tbody tr:last-child {
  border-bottom: none;
}

.product-hierarchy-container .product-hierarchy-table tbody tr td {
  padding: 14px 20px;
  color: #495057;
  vertical-align: middle;
  font-size: 14px;
}

.product-hierarchy-container .product-hierarchy-table tbody tr td.name-cell {
  font-weight: 600;
  color: #0a1629;
}

.product-hierarchy-container .product-hierarchy-table tbody tr td.no-data-cell {
  text-align: center;
  padding: 40px 20px;
  color: #7d8592;
  font-size: 16px;
}

.product-hierarchy-container .status-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.product-hierarchy-container .status-toggle .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.product-hierarchy-container .status-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.product-hierarchy-container .status-toggle .switch input:checked + .slider {
  background-color: #28a745;
}

.product-hierarchy-container .status-toggle .switch input:checked + .slider:before {
  -webkit-transform: translateX(24px);
          transform: translateX(24px);
}

.product-hierarchy-container .status-toggle .switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #28a745;
          box-shadow: 0 0 1px #28a745;
}

.product-hierarchy-container .status-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 26px;
}

.product-hierarchy-container .status-toggle .switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.product-hierarchy-container .status-toggle .status-label {
  font-size: 13px;
  font-weight: 600;
  color: #7d8592;
  min-width: 60px;
}

.product-hierarchy-form {
  background: #ffff;
  border-radius: 12px;
  padding: 30px;
  margin-top: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-hierarchy-form .form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.product-hierarchy-form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.product-hierarchy-form .form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #0a1629;
  margin-bottom: 0;
}

.product-hierarchy-form .form-group .input_blk input, .product-hierarchy-form .form-group .input_blk select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #3f8cff99;
  border-radius: 8px;
  font-size: 14px;
  color: #0a1629;
  background-color: #ffff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.product-hierarchy-form .form-group .input_blk input:focus, .product-hierarchy-form .form-group .input_blk select:focus {
  outline: none;
  border-color: #ffc21a;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
          box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
}

.product-hierarchy-form .form-group .input_blk input:disabled, .product-hierarchy-form .form-group .input_blk select:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.product-hierarchy-form .form-group .input_blk input::-webkit-input-placeholder, .product-hierarchy-form .form-group .input_blk select::-webkit-input-placeholder {
  color: #7d8592;
}

.product-hierarchy-form .form-group .input_blk input:-ms-input-placeholder, .product-hierarchy-form .form-group .input_blk select:-ms-input-placeholder {
  color: #7d8592;
}

.product-hierarchy-form .form-group .input_blk input::-ms-input-placeholder, .product-hierarchy-form .form-group .input_blk select::-ms-input-placeholder {
  color: #7d8592;
}

.product-hierarchy-form .form-group .input_blk input::placeholder, .product-hierarchy-form .form-group .input_blk select::placeholder {
  color: #7d8592;
}

.product-hierarchy-form .form-group .input_blk select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.product-hierarchy-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.product-hierarchy-form .form-actions .submit-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
}

.product-hierarchy-form .form-actions .submit-btn i {
  font-size: 14px;
}

.product-hierarchy-form .form-actions .submit-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.product-hierarchy-form .form-actions .submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.product-hierarchy-form .form-actions .submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.product-hierarchy-form .form-actions .back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: #ffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
          box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

.product-hierarchy-form .form-actions .back-btn i {
  font-size: 14px;
}

.product-hierarchy-form .form-actions .back-btn:hover {
  background: linear-gradient(135deg, #5a6268 0%, #4e555b 100%);
  -webkit-box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
          box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #ffff;
  text-decoration: none;
}

.product-hierarchy-form .form-actions .back-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .product-hierarchy-form {
    padding: 20px;
  }
  .product-hierarchy-form .form-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
  .product-hierarchy-form .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-hierarchy-form .form-actions .submit-btn,
  .product-hierarchy-form .form-actions .back-btn {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .product-hierarchy-container {
    padding: 15px;
  }
  .product-hierarchy-container .product-hierarchy-table {
    font-size: 13px;
  }
  .product-hierarchy-container .product-hierarchy-table thead tr th {
    padding: 12px 10px;
    font-size: 12px;
  }
  .product-hierarchy-container .product-hierarchy-table tbody tr td {
    padding: 10px;
    font-size: 13px;
  }
  .product-hierarchy-container .status-toggle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  margin: 25px 0;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pagination .pagination-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 45px;
  height: 40px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0a1629;
  background-color: #ffff;
  border: 1px solid #dee2e6;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
}

.pagination .pagination-btn:hover:not(:disabled) {
  background-color: #ffc21a;
  border-color: #ffc21a;
  color: #0a1629;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 4px 8px rgba(255, 194, 26, 0.3);
  text-decoration: none;
}

.pagination .pagination-btn:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.2);
          box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.2);
}

.pagination .pagination-btn.active {
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  border-color: #ffc21a;
  color: #0a1629;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.4);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.4);
}

.pagination .pagination-btn.active:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
}

.pagination .pagination-btn:disabled, .pagination .pagination-btn[disabled] {
  color: #adb5bd;
  background-color: #e9ecef;
  border-color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.pagination .pagination-btn:disabled:hover, .pagination .pagination-btn[disabled]:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination .pagination-info {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #7d8592;
  background-color: transparent;
  border-radius: 8px;
}

.pagination .pagination-info .page-number {
  font-weight: 700;
  color: #0a1629;
  margin: 0 4px;
}

.pagination .page-item {
  list-style: none;
}

.pagination .page-item .page-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0a1629;
  background-color: #ffff;
  border: 1px solid #dee2e6;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pagination .page-item .page-link:hover {
  background-color: #ffc21a;
  border-color: #ffc21a;
  color: #0a1629;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 4px 8px rgba(255, 194, 26, 0.3);
}

.pagination .page-item .page-link:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.2);
          box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.2);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  border-color: #ffc21a;
  color: #0a1629;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.4);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.4);
}

.pagination .page-item.disabled .page-link {
  color: #7d8592;
  background-color: #f8f9fa;
  border-color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.pagination .page-item.disabled .page-link:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 768px) {
  .pagination {
    gap: 8px;
    padding: 15px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .pagination .pagination-btn {
    min-width: 40px;
    height: 36px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .pagination .pagination-info {
    padding: 8px 12px;
    font-size: 13px;
  }
  .pagination .page-item .page-link {
    min-width: 36px;
    height: 36px;
    padding: 6px 10px;
    font-size: 13px;
  }
}

#admin-panel .layout .sidebar .nav_container {
  overflow-x: visible !important;
  overflow-y: auto !important;
}

#admin-panel .layout .sidebar .nav_container .nav_list li {
  overflow: visible;
  position: relative;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group {
  overflow: visible;
  position: relative;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group.open .nav_group_toggle {
  background: transparent;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group.open .nav_group_toggle .left_blk .item_name {
  color: #7d8592;
  font-weight: 600;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group .nav_dropdown_panel {
  position: relative;
  z-index: 100;
  background-color: transparent;
  width: 100%;
  padding-left: 8px;
  margin-top: 8px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group .nav_dropdown_panel .sub_link {
  position: relative;
  z-index: 1;
  background-color: white;
  display: block;
  margin-bottom: 4px;
}

#admin-panel .layout .sidebar .nav_container .nav_list li .nav_group .nav_dropdown_panel .sub_link:last-child {
  margin-bottom: 0;
}

#admin-panel .layout .content {
  position: relative;
  z-index: 1;
}

@media (max-width: 1024px) {
  #products .top_sec {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  #products .top_sec .top_left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    margin-bottom: 8px;
  }
  #products .top_sec .add-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-width: 140px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #products .filter-section .filter-form .filter-row {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  #products .filter-section .filter-form .filter-row.actions-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  #products .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #products .table-container .table {
    min-width: 1200px;
  }
  #products .table-container .table th, #products .table-container .table td {
    padding: 10px 8px;
    font-size: 13px;
  }
  #products .table-container .table .product-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  #products .top_sec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #products .top_sec .top_left {
    width: 100%;
  }
  #products .top_sec .top_left .title {
    font-size: 20px;
  }
  #products .top_sec .add-btn {
    width: 100%;
    padding: 12px 16px;
  }
  #products .top_sec .add-btn .store-request-count {
    font-size: 12px;
    padding: 3px 8px;
  }
  #products .filter-section .filter-form .filter-row {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 12px;
  }
  #products .filter-section .filter-form .filter-row .filter-group label {
    font-size: 13px;
  }
  #products .filter-section .filter-form .filter-row .filter-group .filter-input {
    font-size: 14px;
    padding: 10px 12px;
  }
  #products .filter-section .filter-form .filter-row.actions-row .filter-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  #products .filter-section .filter-form .filter-row.actions-row .filter-buttons .filter-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #products .table-container {
    margin: 0 -15px;
    padding: 0 15px;
    overflow-x: auto;
  }
  #products .table-container .table {
    min-width: 1400px;
  }
  #products .table-container .table th {
    font-size: 12px;
    white-space: nowrap;
    padding: 12px 8px;
  }
  #products .table-container .table td {
    font-size: 12px;
    padding: 10px 8px;
    white-space: nowrap;
  }
  #products .table-container .table td.product-name {
    max-width: 200px;
    white-space: normal;
    word-wrap: break-word;
  }
  #products .table-container .table .product-image {
    width: 45px;
    height: 45px;
  }
  #products .table-container .table .action-buttons-container .action-btn-enhanced {
    padding: 6px 10px;
  }
  #products .table-container .table .action-buttons-container .action-btn-enhanced i {
    font-size: 12px;
  }
  #products .table-container .table .status {
    padding: 4px 8px;
    font-size: 11px;
  }
  #products .table-container .table .dirham-symbol {
    font-size: 11px;
  }
  #products .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  #products .pagination .page-link {
    padding: 6px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  #products .top_sec .title {
    font-size: 18px;
  }
  #products .top_sec .add-btn {
    font-size: 13px;
    padding: 10px 14px;
  }
  #products .top_sec .add-btn svg {
    width: 16px;
    height: 16px;
  }
  #products .filter-section {
    margin-bottom: 15px;
  }
  #products .filter-section .filter-form .filter-row .filter-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  #products .filter-section .filter-form .filter-row .filter-group .filter-input {
    font-size: 13px;
    padding: 8px 10px;
  }
  #products .filter-section .filter-form .filter-row .filter-group .select2-container {
    font-size: 13px;
  }
  #products .table-container .table th, #products .table-container .table td {
    font-size: 11px;
    padding: 8px 6px;
  }
  #products .table-container .table .product-image {
    width: 40px;
    height: 40px;
  }
  #products .table-container .table .action-buttons-container .action-btn-enhanced {
    padding: 5px 8px;
  }
  #products .table-container .table .action-buttons-container .action-btn-enhanced i {
    font-size: 11px;
  }
  #products .pagination .page-link {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.table-container {
  position: relative;
}

.table-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.05)), to(transparent));
  background: linear-gradient(to left, rgba(0, 0, 0, 0.05), transparent);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.table-container.has-scroll::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .table-container::after {
    width: 20px;
  }
}

.categories-container {
  width: 100%;
  max-width: 100%;
}

.category-card-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .category-card-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
  }
}

.input-text {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #3f8cff99;
  border-radius: 8px;
  font-size: 14px;
  color: #0a1629;
  background-color: #ffff;
  font-family: 'Nunito Sans', sans-serif;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.input-text:focus {
  outline: none;
  border-color: #ffc21a;
  -webkit-box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
          box-shadow: 0 0 0 3px rgba(255, 194, 26, 0.1);
}

.input-text:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.input-text::-webkit-input-placeholder {
  color: #7d8592;
}

.input-text:-ms-input-placeholder {
  color: #7d8592;
}

.input-text::-ms-input-placeholder {
  color: #7d8592;
}

.input-text::placeholder {
  color: #7d8592;
}

.input-text[type="file"] {
  padding: 10px;
  border: 1px solid #3f8cff99;
  border-radius: 8px;
  cursor: pointer;
}

.input-text[type="file"]::-webkit-file-upload-button {
  padding: 8px 16px;
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 10px;
  font-family: 'Nunito Sans', sans-serif;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.input-text[type="file"]::-webkit-file-upload-button:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
}

select.input-text {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

textarea.input-text {
  resize: vertical;
  min-height: 100px;
  font-family: 'Nunito Sans', sans-serif;
}

.text-danger {
  color: #f12424;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.submit-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffc21a 0%, #ffb300 100%);
  color: #0a1629;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
          box-shadow: 0 2px 8px rgba(255, 194, 26, 0.3);
  font-family: 'Nunito Sans', sans-serif;
  text-decoration: none;
}

.submit-btn i {
  font-size: 14px;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ff9800 100%);
  -webkit-box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
          box-shadow: 0 4px 12px rgba(255, 194, 26, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-decoration: none;
  color: #0a1629;
}

.submit-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}

.cancel-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: #ffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
          box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
  font-family: 'Nunito Sans', sans-serif;
}

.cancel-btn i {
  font-size: 14px;
}

.cancel-btn:hover {
  background: linear-gradient(135deg, #5a6268 0%, #4e555b 100%);
  -webkit-box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
          box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #ffff;
  text-decoration: none;
}

.cancel-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.alert i {
  font-size: 18px;
}

.alert.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert.alert-error, .alert.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert.alert-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.alert.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.alert ul {
  margin: 5px 0 0 20px;
  padding: 0;
}

.required {
  color: #f12424;
  margin-left: 2px;
  font-weight: 700;
}

.info-text {
  font-size: 12px;
  color: #7d8592;
  margin-top: 5px;
  font-weight: 400;
}

.full-width {
  grid-column: 1 / -1;
}

.form-card {
  background: #ffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
  .form-card {
    padding: 20px;
  }
}

.form-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a1629;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.current-attachment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
}

.current-attachment i {
  color: #7d8592;
}

.current-attachment a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.current-attachment a:hover {
  text-decoration: underline;
}

.detail-card {
  background: #ffff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
  .detail-card {
    padding: 20px;
  }
}

.detail-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #0a1629;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.detail-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

@media screen and (max-width: 768px) {
  .detail-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
}

.detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-size: 13px;
  color: #7d8592;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 16px;
  color: #0a1629;
  font-weight: 500;
}

.amount-display {
  font-size: 24px;
  font-weight: 700;
  color: #059669;
}

.notes-box {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid #ffc21a;
  margin-top: 10px;
  color: #495057;
}

.attachment-preview {
  margin-top: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #dee2e6;
  text-align: center;
}

.attachment-preview img {
  max-width: 300px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.attachment-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #0066cc;
  color: #ffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.attachment-link:hover {
  background: #0052a3;
  color: #ffff;
  text-decoration: none;
}

.action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.action-buttons .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-buttons .btn i {
  font-size: 14px;
}

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

.action-buttons .btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.action-buttons .btn-primary {
  background: linear-gradient(135deg, #ffc21a, #ffb300);
  color: #0a1629;
}

.action-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #ffb300, #ff9800);
}

.action-buttons .btn-secondary {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: #ffff;
}

.action-buttons .btn-secondary:hover {
  background: linear-gradient(135deg, #4b5563, #374151);
}

.action-buttons .btn-danger {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #ffff;
}

.action-buttons .btn-danger:hover {
  background: linear-gradient(135deg, #c82333, #bd2130);
}

@media screen and (max-width: 768px) {
  .action-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .action-buttons .btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.empty-state {
  padding: 60px 20px;
  text-align: center;
  background: #ffff;
  border-radius: 12px;
  margin: 20px 0;
}

.empty-state h3 {
  color: #7d8592;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.empty-state p {
  color: #9ca3af;
  font-size: 14px;
}
/*# sourceMappingURL=globals.css.map */