:focus {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bs-heading-font-family);
}

a {
  color: var(--bs-primary);
  -webkit-transition: color 400ms ease, background 400ms ease;
  -o-transition: color 400ms ease, background 400ms ease;
  transition: color 400ms ease, background 400ms ease;
}

.iq-slider {
  overflow: hidden;
  overflow-x: auto;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

.iq-scroller-effect {
  /* Scroll Track */
  /* Scroll Handle */
  /* Scroll Handle on hover */
}

.iq-scroller-effect ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.iq-scroller-effect ::-webkit-scrollbar-track {
  background: var(--bs-body-bg);
  -webkit-border-radius: 20px;
  border-radius: 20px;
}

.iq-scroller-effect ::-webkit-scrollbar-thumb {
  background: #eee;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  cursor: pointer;
}

.iq-scroller-effect ::-webkit-scrollbar-thumb:hover {
  background: #f0f0f0;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

body {
  -webkit-transition: background-color 250ms ease-in-out;
  -o-transition: background-color 250ms ease-in-out;
  transition: background-color 250ms ease-in-out;
}

.sign-bg {
  position: absolute;
  left: 0;
  top: 0;
}

.sign-bg.sign-bg-right {
  left: auto;
  right: 0;
}

.gradient-main {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.login-bottom {
  margin-top: -12.5rem;
}

@media (min-width: 1400px) {
  .auth-card {
    padding: 0 6.25rem;
  }
}

@media (max-width: 575.98px) {
  .login-header {
    height: 12.5rem !important;
  }

  .login-bottom {
    margin-top: -6.25rem;
  }
}

.card .iq-dashed-border {
  padding: 1.5rem;
  -webkit-border-radius: var(--bs-border-radius-lg);
  border-radius: var(--bs-border-radius-lg);
  border: 1px dashed var(--bs-gray-400);
}

.card .card-body .grid-flow-col {
  grid-auto-flow: column;
}

.card .card-body .iq-icon-box-2 {
  height: 36px;
  width: 36px;
  min-width: 36px;
  line-height: 36px;
  background: var(--bs-body-bg);
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  -webkit-border-radius: 0.5rem;
  border-radius: 0.5rem;
}

.card .card-body .iq-media-group-1 .iq-media-1 {
  margin-left: -1.25rem;
  position: relative;
  z-index: 0;
}

.card .card-body .iq-media-group-1 .iq-media-1:hover {
  z-index: 9;
}

.card .card-body .iq-media-group-1 .iq-media-1 img {
  border: 2px solid var(--bs-border-color);
}

.card .card-body .iq-media-group-1 .iq-media-1:first-child {
  margin-left: 0;
}

.card .card-body .iq-media-group-1 .iq-media.border {
  border: 2px solid var(--bs-border-color);
}

.card .card-body .iq-media-1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  -webkit-border-radius: 0.125rem;
  border-radius: 0.125rem;
}

.card .card-body .iq-media-1:hover {
  text-decoration: none;
}

.pricing .table thead tr {
  background-color: unset;
}

.pricing .table th {
  border-top: none;
  border-bottom: 1px solid var(--bs-border-color);
}

.pricing .table td {
  border-top: none !important;
}

.pricing .table tr {
  border-bottom: 1px solid var(--bs-border-color);
}

.prc-box {
  background: var(--bs-primary-bg-subtle);
  padding: 15px;
  position: relative;
  -webkit-border-radius: var(--bs-border-radius);
  border-radius: var(--bs-border-radius);
  cursor: pointer;
}

.type {
  position: absolute;
  background: var(--bs-primary);
  padding: 9px 25px;
  color: var(--bs-white);
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 500;
}

.type:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  right: -15px;
  top: 0px;
  border-left: 15px solid var(--bs-primary-bg-subtle);
  border-top: 15px solid transparent;
}

.type:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  left: -15px;
  top: 0px;
  border-right: 15px solid var(--bs-primary-bg-subtle);
  border-top: 15px solid transparent;
}

.prc-box.active {
  background: var(--bs-primary);
}

.prc-box.active .h3 {
  color: var(--bs-white);
}

.prc-box.active .type {
  background: var(--bs-primary-bg-subtle);
  color: var(--bs-heading-color);
}

.prc-box.active .type:before {
  border-left: 16px solid var(--bs-primary-hover-bg);
  right: -16px;
}

.prc-box.active .type:after {
  border-right: 16px solid var(--bs-primary-hover-bg);
  left: -16px;
}

.prc-wrap {
  border-bottom: none !important;
}

.child-cell.active {
  color: var(--bs-primary);
  stroke: var(--bs-primary);
}

.line-around {
  border-bottom: 1px solid var(--bs-border-color);
  line-height: 0.1em;
  margin: 10px 0 20px;
  text-align: center;
}

.line-around .line-around-1 {
  text-transform: uppercase;
  background: var(--bs-card-bg);
  padding: 0px 10px;
}

.iq-single-card {
  -webkit-border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
  border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
}

@media (max-width: 767.98px) {
  .iq-single-card {
    -webkit-border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
    border-radius: 0 0 var(--bs-border-radius-lg) var(--bs-border-radius-lg);
  }
}

.iq-star-inserted .iq-star-inserted-1.col {
  padding-right: unset;
}

.iq-star-inserted .iq-star-inserted-2 {
  z-index: 2;
}

.iq-star-inserted .iq-star-inserted-2.col {
  padding: unset;
}

.iq-star-inserted .iq-star-inserted-2.col .card {
  height: 100%;
}

.iq-star-inserted .iq-star-inserted-3.col {
  padding-left: unset;
}

@media (max-width: 991.98px) {
  .iq-star-inserted .card.my-5 {
    margin: unset !important;
    margin-bottom: 2rem !important;
  }

  .iq-star-inserted .iq-star-inserted-1.col {
    padding-right: calc(var(--bs-gutter-x) / 2);
  }

  .iq-star-inserted .iq-star-inserted-2.col {
    padding-right: calc(var(--bs-gutter-x) / 2);
    padding-left: calc(var(--bs-gutter-x) / 2);
  }

  .iq-star-inserted .iq-star-inserted-2.col .card {
    height: unset;
    margin-bottom: 2rem !important;
  }

  .iq-star-inserted .iq-star-inserted-3.col {
    padding-left: calc(var(--bs-gutter-x) / 2);
  }
}

.body-class-1 {
  scroll-behavior: smooth;
}

.main-img .container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.main-img .container h1 {
  margin: 0;
  font-size: 4.375rem;
  color: #ffffff;
}

.main-img .container h1 span {
  padding: 0.375rem 0.875rem;
  display: inline-block;
}

.bd-heading-1 .bd-example {
  margin-top: 1rem;
}

.bd-heading-1 .bd-example:first-child {
  margin-top: 0rem;
}

.bd-cheatsheet {
  margin-top: -2rem;
}

.bd-cheatsheet section article .card.iq-document-card {
  padding: 1.5rem;
}

.bd-cheatsheet section article .card.iq-document-card .tab-content pre.language-markup {
  margin: unset;
}

.bd-aside.card.iq-document-card {
  padding: 1.5rem;
  margin-top: -2rem;
}

/* Table of contents */
.bd-aside a {
  padding: 0.25rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 0.25rem;
  color: rgba(138, 146, 166, 0.95);
  text-decoration: none;
}

.bd-aside a:hover,
.bd-aside a:focus {
  background-color: rgba(58, 87, 232, 0.1);
}

.bd-aside .active {
  font-weight: 600;
  background-color: rgba(58, 87, 232, 0.1);
  color: #077a16;
}

.bd-aside .btn {
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: #8A92A6;
  border: 0;
}

.bd-aside .btn .right-icon {
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  -o-transition: transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

.bd-aside .btn:hover,
.bd-aside .btn:focus {
  background-color: rgba(58, 87, 232, 0.1);
  color: #077a16;
}

.bd-aside .btn:focus {
  -webkit-box-shadow: 0 0 0 0.063rem rgba(58, 87, 232, 0.7);
  box-shadow: 0 0 0 0.063rem rgba(58, 87, 232, 0.7);
}

.bd-aside .btn[aria-expanded=true] .right-icon {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.scrollspy-example {
  position: relative;
  height: 12.5rem;
  margin-top: 0.5rem;
  overflow: auto;
}

[id=modal] .bd-example .btn,
[id=buttons] .bd-example .btn,
[id=tooltips] .bd-example .btn,
[id=popovers] .bd-example .btn,
[id=dropdowns] .bd-example .btn-group,
[id=dropdowns] .bd-example .dropdown,
[id=dropdowns] .bd-example .dropup,
[id=dropdowns] .bd-example .dropend,
[id=dropdowns] .bd-example .dropstart {
  margin-top: 0.5rem;
}

/* Layout */
@media (min-width: 1200px) {
  .body-class-1 {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-rows: auto;
  }

  .bd-aside.sticky-xl-top {
    top: 2rem !important;
  }

  .bd-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    grid-column: 1/span 3;
  }

  .sticky-xl-top {
    z-index: 2;
  }

  .bd-cheatsheet,
  .bd-cheatsheet section,
  .bd-cheatsheet article {
    display: grid;
    gap: 2rem;
    grid-template-columns: 3fr 1fr;
    grid-column: span 2/span 2;
    grid-template-rows: auto;
  }

  .bd-aside {
    grid-area: 1/1;
    scroll-margin-top: 4rem;
  }

  .bd-cheatsheet section,
  .bd-cheatsheet section>.iq-side-content {
    top: 2rem;
    scroll-margin-top: 0;
  }

  .bd-cheatsheet article,
  .bd-cheatsheet .bd-heading {
    top: calc(7.2rem + 2rem);
    scroll-margin-top: calc(7.8rem + 2rem);
  }

  .bd-cheatsheet .bd-heading {
    z-index: 1;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }

  .bd-cheatsheet .bd-heading .card {
    margin-bottom: 0;
  }

  .bd-cheatsheet article .iq-document-card {
    margin-bottom: unset;
  }

  .bd-cheatsheet article .iq-document-card.iq-doc-head {
    margin-top: -6.8rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .mobile-offcanvas {
    width: 40% !important;
  }
}

@media (max-width: 767.98px) {
  .main-img .container h1 {
    font-size: 3.125rem;
  }
}

@media (max-width: 1199.98px) {
  .header .container {
    max-width: unset !important;
  }

  aside.mobile-offcanvas {
    margin-top: unset !important;
  }

  aside.mobile-offcanvas .offcanvas-header {
    display: block;
  }

  .body-class-1 {
    padding: unset;
  }

  .body-class-1.container {
    max-width: unset;
  }

  #content .iq-side-content .card {
    margin-top: 1.25rem;
  }

  .mobile-offcanvas {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-border-radius: 0;
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1200;
    width: 75%;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    background: rgba(255, 255, 255, 0.8392156863);
    -webkit-backdrop-filter: blur(0.5rem);
    backdrop-filter: blur(0.5rem);
  }

  .mobile-offcanvas.show {
    visibility: visible;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }
}

@media (min-width: 1200px) {

  .bd-aside.card.iq-document-card,
  .bd-cheatsheet {
    margin-top: -3rem;
  }

  aside.mobile-offcanvas .offcanvas-header {
    display: none;
  }

  .bd-cheatsheet section .iq-side-content {
    grid-column-end: 3;
  }

  .bd-cheatsheet section .iq-side-content .card {
    margin-bottom: 0;
  }
}

body.offcanvas-active {
  overflow: hidden;
}

body.uikit .btn-download {
  display: none;
}

.uisheet.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
  -o-transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.uisheet.screen-darken.active {
  z-index: 10;
  -webkit-transition: opacity 0.3s ease, width 0s;
  -o-transition: opacity 0.3s ease, width 0s;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

#back-to-top {
  display: inline !important;
}

#back-to-top .top {
  bottom: 1.563rem;
  right: 1.563rem;
  z-index: 999;
}

.middle {
  display: inline !important;
}

.middle .mid-menu {
  position: fixed;
  top: 9.375rem;
  left: 0rem;
  z-index: 999;
  text-align: center;
  cursor: pointer;
  background: #077a16;
  color: #ffffff;
  padding: 0.2rem;
  -webkit-border-radius: 0 1rem 1rem 0;
  border-radius: 0 1rem 1rem 0;
}

.top-1 {
  top: 1rem;
}

[data-bs-theme=dark] .credit-card-widget .primary-gradient-card {
  background: -webkit-linear-gradient(332.24deg, rgba(0, 0, 0, 0.5) -7.21%, rgba(0, 0, 0, 0.01) 118.08%);
  background: -o-linear-gradient(332.24deg, rgba(0, 0, 0, 0.5) -7.21%, rgba(0, 0, 0, 0.01) 118.08%);
  background: linear-gradient(117.76deg, rgba(0, 0, 0, 0.5) -7.21%, rgba(0, 0, 0, 0.01) 118.08%);
}

[data-bs-theme=dark] .border-white {
  border-color: var(--bs-border-color) !important;
}

[data-bs-theme=dark] .text-dark {
  color: var(--bs-white) !important;
}

[data-bs-theme=dark] .text-black {
  color: var(--bs-white) !important;
}

[data-bs-theme=dark] .bg-white {
  background: var(--bs-gray-900) !important;
}

[data-bs-theme=dark] .table thead tr th {
  background-color: #151824;
}

[data-bs-theme=dark] .table-striped>tbody>tr:nth-of-type(even)>* {
  --bs-table-accent-bg: #151824;
}

[data-bs-theme=dark] .bg-light {
  background: var(--bs-body-bg) !important;
}

[data-bs-theme=dark] .card {
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(255, 255, 255, 0.03);
  box-shadow: 0 0.625rem 1.875rem rgba(255, 255, 255, 0.03);
}

@media (min-width: 375px) and (max-width: 768px) {
  div.dataTables_wrapper div.dataTables_filter input {
    width: 13rem !important;
  }

  #datatable_paginate .pagination {
    overflow: overlay !important;
  }
}

@media (min-width: 992px) {
  [dir=rtl] .ms-auto {
    margin-left: unset !important;
  }
}

[dir=rtl] .apexcharts-tooltip-marker {
  margin-left: 10px !important;
}

#d-main .apexcharts-xaxistooltip-bottom {
  background-color: var(--bs-gray-900);
  color: var(--bs-card-color);
}

.dropdown-menu {
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 450px) {
  .custom-dropend-btn {
    --bs-btn-padding-x: 9px mp !important;
  }
}

[dir=rtl] .nav .navbar-brand:not(.navbar-horizontal-brand) {
  margin-right: 2rem !important;
  margin-left: 1rem !important;
}

[dir=rtl] .nav .navbar-horizontal-brand {
  margin-right: 1rem !important;
}

@media (max-width: 1199.98px) {
  .custom-datatable-entries .dataTables_length {
    margin-bottom: 1em !important;
  }
}

[dir=rtl] .custom-dropdown-menu-end {
  -webkit-transform: translate(60px, 24px) !important;
  -ms-transform: translate(60px, 24px) !important;
  transform: translate(60px, 24px) !important;
}

[dir=rtl] .custom-dropdown-menu-profile {
  -webkit-transform: translate(110px, 24px) !important;
  -ms-transform: translate(110px, 24px) !important;
  transform: translate(110px, 24px) !important;
}

[dir=rtl] .custom-dropdown-menu-friends {
  -webkit-transform: translate(146px, 24px) !important;
  -ms-transform: translate(146px, 24px) !important;
  transform: translate(146px, 24px) !important;
}

.custom-warn {
  margin-bottom: 1rem !important;
}

@media (min-width: 375px) and (max-width: 768px) {
  .card-slide .card-slie-arrow {
    left: 35px !important;
    top: 35px !important;
  }
}

[dir=rtl] .float-left:not(.custom-float-left) {
  float: right !important;
}

.list-inline-item:not(:last-child) {
  margin-left: 0.5rem;
}

[dir=rtl] .iq-text {
  text-align: right;
}

.dual-horizontal {
  z-index: 20;
}

[dir=rtl] .d-slider1 .swiper-wrapper li:first-child {
  margin-right: 0 !important;
}

.middle .mid-menu {
  top: 50% !important;
}

[dir=rtl] .text-muted {
  padding-left: 10px;
}

@media (max-width: 990px) {
  .custom-drop .dropdown-menu-end {
    right: 9px !important;
  }
}

.custom-dropstart .dropdown-menu {
  left: 200px !important;
  width: 188.92px !important;
  -webkit-transform: translate(-200px, 42px) !important;
  -ms-transform: translate(-200px, 42px) !important;
  transform: translate(-200px, 42px) !important;
}

@media (max-width: 921px) {
  .nav .custom-navbar-inner {
    padding-left: 10px !important;
    padding-right: 20px !important;
  }
}

@media (min-width: 375px) and (max-width: 768px) {
  .profile-tab .nav-link {
    padding: var(--bs-nav-link-padding-y) 0.7rem !important;
  }

  [dir=rtl] .breadcrumb-item+.breadcrumb-item:before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
  }

  [data-bs-theme=dark] .custom-list-dark:hover {
    color: black;
  }

  [dir=rtl] .form-control.is-valid {
    padding-left: calc(1.5em + 1rem);
    background-position: left calc(0.375em + 0.25rem) center;
  }

  [dir=rtl] .iq-form-input {
    margin-left: 39rem !important;
  }

  [dir=rtl] .iq-form-input2 {
    margin-left: 37rem !important;
  }
}

.elem-list {
  max-height: calc(80vh + 4rem);
  overflow: auto;
}


.header-sec1-btn {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.header-title {
  width: 60%;
}

.header-sec1-btn-sec {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: end;
  width: 40%;
}

.header-sec1-btn-sec-btn1 {
  padding: 0.3rem 2rem;
  border: none;
  border-radius: 5px;
  background-color: green;
  color: white;
  transition: ease 0.3s;
  display: flex;
  flex-direction: row;
  width: max-content;
}

.header-sec1-btn-sec-btn1:hover {
  background-color: rgb(0, 95, 0);
}

.acc-btn {
  margin-top: 3px;
}

.header-sec1-btn-sec-btn2 {
  padding: 0.3rem 2rem;
  border: none;
  border-radius: 5px;
  background-color: rgb(207, 0, 0);
  color: white;
  transition: ease 0.3s;
  display: flex;
  flex-direction: row;
  width: max-content;
}

.header-sec1-btn-sec-btn2:hover {
  background-color: rgb(165, 0, 0);
}

.del-btn {
  margin-top: 2px;
}

@media screen and (max-width:390px) {
  .header-sec1-btn-sec {
    flex-direction: column;
  }
}

@media screen and (max-width:549px) {
  .header-sec1-btn {
    flex-direction: column;
  }

  .header-title {
    width: 100%;
  }

  .header-sec1-btn-sec {
    justify-content: start;
    width: 100%;
    margin: 1rem 0;
  }
}

.amount--table {
  display: flex;
  width: 100%;
  justify-content: end;
  background-color: red;
}

.form-group-div {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.profile-img-edit {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 5%;
}

.image-upload-icon {
  width: 100%;
  justify-content: end;
  display: flex;
  margin-top: -2rem;
}

.file-upload {
  display: none;
}

.file-upload-div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}


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

.form-group2-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  width: 100%;
  margin-top: 1rem;
  justify-content: flex-start;
}

.image-wrapper-div {
  width: 32%;
  flex: 0 0 32%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.image-wrapper {
  width: 90%;
  aspect-ratio: 1 / 1;
}

.profile-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.5rem;
}

.remove-btn {
  position: absolute;
  top: 0px;
  right: 8px;
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.remove-btn:hover {
  color: var(--bs-primary);
}


@media screen and (min-width:550px) and (max-width:991px) {
  .form-group-div {
    flex-direction: row;
  }

  .form-group1 {
    width: 50%;
  }

  .form-group2-container {
    width: 50%;
    margin-top: 0rem;
  }

.form-group2-grid {
  gap: 1%;
}

.image-wrapper-div {
  width: 24.25%;
  flex: 0 0 24.25%;
}

}



.login--body{
margin: 0;
    padding: 0;
    box-sizing: border-box;
     background-color: #0246af;
    overflow-x: hidden;
}

.login--body--div{
   font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* background: #0246af; */
    background-image: url(../images/auth/03.png);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

.login-container {
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

.login-card {
    background: #0246af;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 
        20px 20px 60px #003390,
        -20px -20px 60px #003898;
    position: relative;
    transition: all 0.3s ease;
}

.login-card:hover {
    transform: translateY(-5px);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.neu-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: #0246af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        8px 8px 20px #003390,
        -8px -8px 20px #003898,
        inset 0 0 0 #003390,
        inset 0 0 0 #003898;
    transition: all 0.3s ease;
}

.neu-icon:hover {
    box-shadow: 
        4px 4px 10px #003390,
        -4px -4px 10px #003898,
        inset 4px 4px 10px #003390,
        inset -4px -4px 10px #003898;
}

.icon-inner {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7293;
}

.icon-inner svg {
    width: 100%;
    height: 100%;
}

.login-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.login-header p {
    color: #cad2ff;
    font-size: 15px;
    font-weight: 400;
}

/* Neumorphic Input Styles */
.form-group {
    margin-bottom: 28px;
    position: relative;
}

.neu-input {
    position: relative;
    background: #0246af;
    border-radius: 15px;
    box-shadow: 
        inset 8px 8px 16px #003390,
        inset -8px -8px 16px #003898;
    transition: all 0.3s ease;
}

.neu-input:focus-within {
    box-shadow: 
        inset 4px 4px 8px #003390,
        inset -4px -4px 8px #003898;
}

.neu-input input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    padding-left: 55px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    margin-top: 0.3rem;
}

.neu-input input::placeholder {
    color: transparent;
}

.neu-input label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s ease;
}

.neu-input input:focus + label,
.neu-input input:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 12px;
    color: #cad2ff;
    transform: translateY(0);
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9499b7;
    transition: all 0.3s ease;
}

.input-icon svg {
    width: 100%;
    height: 100%;
}

.neu-input:focus-within .input-icon {
    color: #cad2ff;
}

/* Password Toggle */
.password-group {
    padding-right: 50px;
}

.neu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #0246af;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9499b7;
    box-shadow: 
        4px 4px 10px #003390,
        -4px -4px 10px #003898;
    transition: all 0.3s ease;
}

.neu-toggle:hover {
    color: #6c7293;
}

.neu-toggle:active {
    box-shadow: 
        inset 2px 2px 5px #003390,
        inset -2px -2px 5px #003898;
}

.neu-toggle svg {
    width: 18px;
    height: 18px;
}

.eye-closed {
    display: none;
}

.neu-toggle.show-password .eye-open {
    display: none;
}

.neu-toggle.show-password .eye-closed {
    display: block;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 16px;
}

.remember-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    color: #6c7293;
    font-size: 14px;
    font-weight: 500;
}

.neu-checkbox {
    width: 22px;
    height: 22px;
    background: #0246af;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        3px 3px 8px #003390,
        -3px -3px 8px #003898;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .neu-checkbox {
    box-shadow: 
        inset 2px 2px 5px #003390,
        inset -2px -2px 5px #003898;
}

.neu-checkbox svg {
    width: 14px;
    height: 14px;
    color: #00c896;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.remember-wrapper input[type="checkbox"]:checked + .checkbox-label .neu-checkbox svg {
    opacity: 1;
    transform: scale(1);
}

.forgot-link {
    color: #6c7293;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #3d4468;
}

/* Neumorphic Button */
.neu-button {
    width: 100%;
    background: #252525;
    border: none;
    border-radius: 15px;
    padding: 18px 32px;
    color: #3d4468;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 
        8px 8px 20px #003390,
        -8px -8px 20px #003898;
    transition: all 0.3s ease;
    overflow: hidden;
}

.neu-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.neu-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 30px #003390,
        -12px -12px 30px #003898;
}

.neu-button:hover::before {
    left: 100%;
}

.neu-button:active {
    transform: translateY(0);
    box-shadow: 
        inset 4px 4px 10px #003390,
        inset -4px -4px 10px #003898;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    color: #ffffff;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neu-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid #003390;
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.neu-button.loading .btn-text {
    opacity: 0;
}

.neu-button.loading .btn-loader {
    opacity: 1;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    gap: 16px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #003390, transparent);
}

.divider span {
    color: #9499b7;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Login */
.social-login {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.neu-social {
    width: 50px;
    height: 50px;
    background: #0246af;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c7293;
    box-shadow: 
        6px 6px 15px #003390,
        -6px -6px 15px #003898;
    transition: all 0.3s ease;
}

.neu-social:hover {
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 20px #003390,
        -8px -8px 20px #003898;
}

.neu-social:active {
    transform: translateY(0);
    box-shadow: 
        inset 3px 3px 8px #003390,
        inset -3px -3px 8px #003898;
}

.neu-social svg {
    width: 22px;
    height: 22px;
}

/* Signup Link */
.signup-link {
    text-align: center;
}

.signup-link p {
    color: #9499b7;
    font-size: 14px;
}

.signup-link a {
    color: #6c7293;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #3d4468;
}

/* Error States */
.error-message {
    color: #ff3b5c;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    margin-left: 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error .neu-input {
    box-shadow: 
        inset 8px 8px 16px #ffb8c4,
        inset -8px -8px 16px #003898,
        0 0 0 2px #ff3b5c;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-message .neu-icon {
    background: #0246af;
    color: #00c896;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #3d4468;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.success-message p {
    color: #9499b7;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    body {
        padding: 16px;
    }
    
    .login-card {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .login-header h2 {
        font-size: 1.75rem;
    }
    
    .neu-input input {
        padding: 18px 20px;
        padding-left: 50px;
    }
    
    .neu-input label {
        left: 50px;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.text-right{
  text-align: right;
}

.form-control{
  color: #252525;
}




/* Enhanced styles for the unified image system */
        
        .color-indicator {
            width: 12px;
            height: 12px;
            display: inline-block;
            border-radius: 50%;
            margin-right: 8px;
            border: 1px solid #ccc;
            vertical-align: middle;
        }
        
        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #f3f3f3;
            border-top: 2px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 8px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .form-check-label {
            display: flex;
            align-items: center;
        }
        
        #stockQuantitySection .form-group {
            margin-bottom: 1rem;
        }
        
        .alert-info {
            background-color: #e7f3ff;
            border-color: #b8daff;
            color: #004085;
        }
        
        /* Enhanced image preview styles */
        /* .image-wrapper-div {
            position: relative;
            margin: 8px;
            display: inline-block;
        }
        
        .image-wrapper {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.2s ease;
        }
        
        .image-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .image-wrapper img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }
        
        .image-wrapper:hover img {
            opacity: 0.9;
        }
        
        .remove-btn {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #dc3545;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.2s ease, transform 0.2s ease;
            z-index: 10;
        }
        
        .remove-btn:hover {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .remove-btn svg {
            width: 16px;
            height: 16px;
        } */
        
        /* Image type label */
        .image-type-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 4px 8px;
            font-size: 11px;
            text-align: center;
            font-weight: 500;
        }
        
        .image-type-label.main {
            background: rgba(40, 167, 69, 0.9);
        }
        
        .image-type-label.color {
            background: rgba(108, 117, 125, 0.9);
        }
        
        /* Color image sections */
        #colorImageSections .card {
            border: 1px solid #e0e0e0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        #colorImageSections .card-header {
            background-color: #f8f9fa;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .color-upload-section {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 16px;
            background-color: #fefefe;
            transition: border-color 0.2s ease;
        }
        
        .color-upload-section:hover {
            border-color: #dee2e6;
        }
        
        .color-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-weight: 600;
            color: #495057;
        }
        
        .color-header .color-indicator {
            width: 16px;
            height: 16px;
            margin-right: 10px;
        }
        
        /* Upload messages */
        .upload-message {
            margin: 10px 0;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 0.875rem;
            border: 1px solid transparent;
        }
        
        .upload-message i {
            margin-right: 8px;
        }
        
        .upload-message.alert-success {
            background-color: #d4edda;
            border-color: #c3e6cb;
            color: #155724;
        }
        
        .upload-message.alert-error {
            background-color: #f8d7da;
            border-color: #f5c6cb;
            color: #721c24;
        }
        
        .upload-message.alert-info {
            background-color: #cce7ff;
            border-color: #b8daff;
            color: #004085;
        }
        
        /* Main upload area enhancements */
        .profile-img-edit {
            position: relative;
            border: 2px dashed #dee2e6;
            border-radius: 8px;
            transition: all 0.3s ease;
            padding: 8px;
        }
        
        .profile-img-edit:hover {
            border-color: #007bff;
            background-color: #f8f9ff;
        }
        
        .profile-img-edit.drag-over {
            border-color: #007bff;
            background-color: #e3f2fd;
            transform: scale(1.02);
        }
        
        .file-upload-div {
            position: absolute;
            bottom: 8px;
            right: 8px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #007bff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0,123,255,0.3);
        }
        
        .file-upload-div:hover {
            background: #0056b3;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0,123,255,0.4);
        }
        
        .file-upload-div svg {
            width: 20px;
            height: 20px;
        }
        
        /* Image grid layout */
        .form-group2-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 16px;
            padding: 12px;
            background-color: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        
        .form-group2-container {
            margin-top: 16px;
        }
        
        /* Image counter */
        .img-extension {
            background-color: #e9ecef;
            padding: 8px 12px;
            border-radius: 6px;
            margin-top: 8px;
            font-size: 0.875rem;
            color: #6c757d;
            text-align: center;
        }
        
        .img-extension a {
            color: #007bff;
            text-decoration: none;
            font-weight: 600;
        }
        
        .img-extension a:hover {
            text-decoration: underline;
        }
        
        /* Stock section enhancements */
        #stockQuantitySection {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
        }
        
        /* Color preview in stock section */
        .color-stock-section {
            background-color: white;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 16px;
            margin-bottom: 16px;
        }
        
        .color-stock-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .color-stock-header h6 {
            margin: 0;
            color: #495057;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .image-wrapper img {
                width: 90px;
                height: 90px;
            }
            
            .form-group2-grid {
                justify-content: center;
            }
            
            .color-upload-section {
                margin-bottom: 16px;
            }
        }
        
        /* Animation for new images */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .image-wrapper-div {
            animation: fadeInUp 0.3s ease-out;
        }
        
        /* Success/Error states */
        .has-success .form-control {
            border-color: #28a745;
        }
        
        .has-error .form-control {
            border-color: #dc3545;
        }
        
        .form-control.is-invalid {
            border-color: #dc3545;
        }
        
        .form-control.is-valid {
            border-color: #28a745;
        }


        /* Button styles change karanna */
.swiper-button-prev, .swiper-button-next {
    background: #007bff !important;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Scroll speed change karanna */
.swiper-wrapper {
    transition: transform 0.5s ease; /* 0.3s ekata bedala 0.5s */
}

/* Add-on CSS for Read More functionality - DO NOT change existing styles */
.product-card .expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 15px;
}

.product-card.card-expanded .expanded-content {
    max-height: 400px;
    padding: 15px;
}

.product-card.card-expanded {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 100;
    position: relative;
    transition: all 0.3s ease;
}

.read-more-toggle {
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 5px 0;
    text-decoration: underline;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
}

.read-more-toggle:hover {
    color: #0056b3;
}

.read-more-toggle svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-card.card-expanded .read-more-toggle svg {
    transform: rotate(180deg);
}

.expanded-section {
    border-top: 1px solid #e9ecef;
    margin-top: 10px;
    padding-top: 10px;
}

.expanded-section:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.color-dot {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 8px;
}

.number-tag {
    display: inline-block;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-right: 6px;
    margin-bottom: 6px;
    color: #495057;
}


/* 🟦 Browser auto-fill background override */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}




/* ============================================
   BUTTON STYLES - Organized & Optimized
   ============================================ */

/* ===== BASE BUTTON STYLES ===== */
.btn,
button {
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.btn:hover,
.btn:hover svg,
.btn:hover span,
.btn:hover i,
button:hover,
button:hover svg,
button:hover span,
button:hover i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== SOLID BUTTONS ===== */
.btn-primary {
    background-color: #05a005ff !important;
    border-color: #05a005ff !important;
}

.btn-primary:hover {
    background-color: #048804 !important;
    border-color: #048804 !important;
}

.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
}

.btn-success:hover {
    background-color: #218838 !important;
    border-color: #218838 !important;
}

.btn-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #000 !important;
}

.btn-warning:hover {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #000 !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #c82333 !important;
}

.btn-info {
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
}

.btn-info:hover {
    background-color: #138496 !important;
    border-color: #138496 !important;
}

.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
}

/* ===== OUTLINE BUTTONS ===== */
.btn-outline-primary {
    color: #05a005ff !important;
    border-color: #05a005ff !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    color: white !important;
    background-color: #05a005ff !important;
    border-color: #05a005ff !important;
}

.btn-outline-secondary {
    color: #6c757d !important;
    border-color: #6c757d !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover {
    color: white !important;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

/* ===== ICON BUTTONS ===== */
.btn-icon {
    background-color: transparent !important;
    border: 1px solid !important;
    padding: 0.375rem 0.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 32px !important;
    min-height: 32px !important;
}

/* Primary Icon Button */
.btn-icon.btn-primary {
    border-color: #05a005ff !important;
}

.btn-icon.btn-primary svg {
    color: #05a005ff !important;
    fill: #05a005ff !important;
    stroke: #05a005ff !important;
}

.btn-icon.btn-primary:hover {
    background-color: #05a005ff !important;
}

.btn-icon.btn-primary:hover svg {
    color: white !important;
    fill: white !important;
    stroke: white !important;
}

/* Success Icon Button */
.btn-icon.btn-success {
    border-color: #28a745 !important;
}

.btn-icon.btn-success svg {
    color: #28a745 !important;
    fill: #28a745 !important;
}

.btn-icon.btn-success:hover {
    background-color: #28a745 !important;
}

.btn-icon.btn-success:hover svg {
    color: white !important;
    fill: white !important;
}

/* Warning Icon Button */
.btn-icon.btn-warning {
    border-color: #ffc107 !important;
}

.btn-icon.btn-warning svg {
    color: #ffc107 !important;
    fill: #ffc107 !important;
    stroke: #ffc107 !important;
}

.btn-icon.btn-warning:hover {
    background-color: #ffc107 !important;
}

.btn-icon.btn-warning:hover svg {
    color: #ffffff !important;
    fill: #ffffff !important;
    stroke: #000 !important;
}

/* Danger Icon Button */
.btn-icon.btn-danger {
    border-color: #dc3545 !important;
}

.btn-icon.btn-danger svg {
    color: #dc3545 !important;
    fill: #dc3545 !important;
    stroke: #dc3545 !important;
}

.btn-icon.btn-danger:hover {
    background-color: #dc3545 !important;
}

.btn-icon.btn-danger:hover svg {
    color: white !important;
    fill: white !important;
    stroke: white !important;
}

/* Info Icon Button */
.btn-icon.btn-info {
    border-color: #17a2b8 !important;
    background-color: transparent !important;
}

.btn-icon.btn-info svg {
    color: #17a2b8 !important;
    fill: #17a2b8 !important;
    filter: drop-shadow(0 1px 2px rgba(23, 162, 184, 0.3));
}

.btn-icon.btn-info:hover {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3) !important;
    transform: translateY(-1px);
}

.btn-icon.btn-info:hover svg {
    color: white !important;
    fill: white !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== SVG ICONS ===== */
.btn svg,
button svg {
    opacity: 1 !important;
    visibility: visible !important;
    width: 20px !important;
    height: 20px !important;
    transition: all 0.3s ease !important;
}

/* ===== DISABLED BUTTONS ===== */
.btn:disabled,
.btn.disabled,
button:disabled,
button.disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
}

/* ===== MODAL BUTTONS ===== */
.modal-footer .btn,
.modal-header .btn-close {
    opacity: 1 !important;
}

.modal-header .btn-close:hover {
    opacity: 0.75 !important;
    background-color: rgba(0, 0, 0, 0.1) !important;
}

/* ===== CARD HEADER BUTTONS ===== */
.card-header .btn {
    opacity: 1 !important;
}

/* ===== TABLE ACTION BUTTONS ===== */
table .btn-icon,
.table .btn-icon {
    transform: scale(1);
}

table .btn-icon:hover,
.table .btn-icon:hover {
    transform: scale(1.1) !important;
}

/* ===== PRINT MEDIA ===== */
@media print {
    .btn,
    button {
        display: none !important;
    }
}