:root {

    --fs-11: 11px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-26: 26px;
    --fs-28: 28px;
    --fs-30: 30px;
    --fs-32: 32px;
    --fs-34: 34px;
    --fs-36: 36px;
    --fs-38: 38px;
    --fs-40: 40px;
    
    --fw-100: 100;
    --fw-200: 200;
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;
    
    --m-1: 0.25rem;
    --m-2: 0.5rem;
    --m-3: 0.75rem;
    --m-4: 1rem; 
    --m-5: 1.25rem;
    
    --p-1: 0.25rem;
    --p-2: 0.5rem;
    --p-3: 0.75rem;
    --p-4: 1rem;
    --p-5: 1.25rem;
    
    --color-accent: #3498db;
    --color-accent-hover: #2980b9;
    
    /* Warna utama */
    --color-primary: #007bff;
    --color-secondary: #6c757d;
    --color-success: #28a745;
    --color-danger: #dc3545;
    --color-warning: #ffc107;
    --color-info: #17a2b8;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
    --color-link: #007bff;
    
    /* Warna Hover */
    --color-primary-hover: #0056b3;
    --color-secondary-hover: #5a6268;
    --color-success-hover: #218838;
    --color-danger-hover: #c82333;
    --color-warning-hover: #e0a800;
    --color-info-hover: #138496;
    --color-light-hover: #dae0e5;
    --color-dark-hover: #23272b;
    
    /* Warna Text */
    --color-primary-text: #007bff;
    --color-secondary-text: #6c757d;
    --color-success-text: #28a745;
    --color-danger-text: #dc3545;
    --color-warning-text: #ffc107;
    --color-info-text: #17a2b8;
    --color-light-text: #f8f9fa;
    --color-dark-text: #343a40;
    --color-muted-text: #6c757d;
      
    --gradient-start: #FAEC9C;
    --gradient-end: #BC8D43;
    --gradient-angle: 191.13deg;
}

/* Font Size Classes */
.fs-11 { font-size: var(--fs-11) !important; }
.fs-12 { font-size: var(--fs-12) !important; }
.fs-13 { font-size: var(--fs-13) !important; }
.fs-14 { font-size: var(--fs-14) !important; }
.fs-15 { font-size: var(--fs-15) !important; }
.fs-16 { font-size: var(--fs-16) !important; }
.fs-18 { font-size: var(--fs-18) !important; }
.fs-20 { font-size: var(--fs-20) !important; }
.fs-22 { font-size: var(--fs-22) !important; }
.fs-24 { font-size: var(--fs-24) !important; }
.fs-26 { font-size: var(--fs-26) !important; }
.fs-28 { font-size: var(--fs-28) !important; }
.fs-30 { font-size: var(--fs-30) !important; }
.fs-32 { font-size: var(--fs-32) !important; }
.fs-34 { font-size: var(--fs-34) !important; }
.fs-36 { font-size: var(--fs-36) !important; }
.fs-38 { font-size: var(--fs-38) !important; }
.fs-40 { font-size: var(--fs-40) !important; }

/* Font Weight Classes */
.fw-100 { font-weight: var(--fw-100) !important; }
.fw-200 { font-weight: var(--fw-200) !important; }
.fw-300 { font-weight: var(--fw-300) !important; }
.fw-400 { font-weight: var(--fw-400) !important; }
.fw-500 { font-weight: var(--fw-500) !important; }
.fw-600 { font-weight: var(--fw-600) !important; }
.fw-700 { font-weight: var(--fw-700) !important; }
.fw-800 { font-weight: var(--fw-800) !important; }
.fw-900 { font-weight: var(--fw-900) !important; }

/* Associated Font Weight Classes */
.fw-thin { font-weight: var(--fw-100) !important; }
.fw-extra-light, .fw-ultralight { font-weight: var(--fw-200) !important; }
.fw-light { font-weight: var(--fw-300) !important; }
.fw-regular, .fw-normal { font-weight: var(--fw-400) !important; }
.fw-medium { font-weight: var(--fw-500) !important; }
.fw-semibold { font-weight: var(--fw-600) !important; }
.fw-bold { font-weight: var(--fw-700) !important; }
.fw-extra-bold, .fw-ultrabold { font-weight: var(--fw-800) !important; }
.fw-black, .fw-heavy { font-weight: var(--fw-900) !important; }

/* Margin */
.m-0 { margin: 0 !important; }
.m-1 { margin: var(--m-1) !important; }
.m-2 { margin: var(--m-2) !important; }
.m-3 { margin: var(--m-3) !important; }
.m-4 { margin: var(--m-4) !important; }
.m-5 { margin: var(--m-5) !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: var(--m-1) !important; }
.mt-2 { margin-top: var(--m-2) !important; }
.mt-3 { margin-top: var(--m-3) !important; }
.mt-4 { margin-top: var(--m-4) !important; }
.mt-5 { margin-top: var(--m-5) !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: var(--m-1) !important; }
.mb-2 { margin-bottom: var(--m-2) !important; }
.mb-3 { margin-bottom: var(--m-3) !important; }
.mb-4 { margin-bottom: var(--m-4) !important; }
.mb-5 { margin-bottom: var(--m-5) !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: var(--m-1) !important; }
.ms-2 { margin-left: var(--m-2) !important; }
.ms-3 { margin-left: var(--m-3) !important; }
.ms-4 { margin-left: var(--m-4) !important; }
.ms-5 { margin-left: var(--m-5) !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: var(--m-1) !important; }
.me-2 { margin-right: var(--m-2) !important; }
.me-3 { margin-right: var(--m-3) !important; }
.me-4 { margin-right: var(--m-4) !important; }
.me-5 { margin-right: var(--m-5) !important; }

.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: var(--m-1) !important; margin-right: var(--m-1) !important; }
.mx-2 { margin-left: var(--m-2) !important; margin-right: var(--m-2) !important; }
.mx-3 { margin-left: var(--m-3) !important; margin-right: var(--m-3) !important; }
.mx-4 { margin-left: var(--m-4) !important; margin-right: var(--m-4) !important; }
.mx-5 { margin-left: var(--m-5) !important; margin-right: var(--m-5) !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: var(--m-1) !important; margin-bottom: var(--m-1) !important; }
.my-2 { margin-top: var(--m-2) !important; margin-bottom: var(--m-2) !important; }
.my-3 { margin-top: var(--m-3) !important; margin-bottom: var(--m-3) !important; }
.my-4 { margin-top: var(--m-4) !important; margin-bottom: var(--m-4) !important; }
.my-5 { margin-top: var(--m-5) !important; margin-bottom: var(--m-5) !important; }

/* Padding */
.p-0 { padding: 0 !important;}
.p-1 { padding: var(--p-1) !important; }
.p-2 { padding: var(--p-2) !important; }
.p-3 { padding: var(--p-3) !important; }
.p-4 { padding: var(--p-4) !important; }
.p-5 { padding: var(--p-5) !important; }

.pt-0 { padding-top: 0 !important;}
.pt-1 { padding-top: var(--p-1) !important; }
.pt-2 { padding-top: var(--p-2) !important; }
.pt-3 { padding-top: var(--p-3) !important; }
.pt-4 { padding-top: var(--p-4) !important; }
.pt-5 { padding-top: var(--p-5) !important; }

.pb-0 { padding-bottom: 0 !important;}
.pb-1 { padding-bottom: var(--p-1) !important; }
.pb-2 { padding-bottom: var(--p-2) !important; }
.pb-3 { padding-bottom: var(--p-3) !important; }
.pb-4 { padding-bottom: var(--p-4) !important; }
.pb-5 { padding-bottom: var(--p-5) !important; }

.ps-0 { padding-left: 0 !important;}
.ps-1 { padding-left: var(--p-1) !important; }
.ps-2 { padding-left: var(--p-2) !important; }
.ps-3 { padding-left: var(--p-3) !important; }
.ps-4 { padding-left: var(--p-4) !important; }
.ps-5 { padding-left: var(--p-5) !important; }

.pe-0 { padding-right: 0 !important;}
.pe-1 { padding-right: var(--p-1) !important; }
.pe-2 { padding-right: var(--p-2) !important; }
.pe-3 { padding-right: var(--p-3) !important; }
.pe-4 { padding-right: var(--p-4) !important; }
.pe-5 { padding-right: var(--p-5) !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: var(--p-1) !important; padding-right: var(--p-1) !important; }
.px-2 { padding-left: var(--p-2) !important; padding-right: var(--p-2) !important; }
.px-3 { padding-left: var(--p-3) !important; padding-right: var(--p-3) !important; }
.px-4 { padding-left: var(--p-4) !important; padding-right: var(--p-4) !important; }
.px-5 { padding-left: var(--p-5) !important; padding-right: var(--p-5) !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: var(--p-1) !important; padding-bottom: var(--p-1) !important; }
.py-2 { padding-top: var(--p-2) !important; padding-bottom: var(--p-2) !important; }
.py-3 { padding-top: var(--p-3) !important; padding-bottom: var(--p-3) !important; }
.py-4 { padding-top: var(--p-4) !important; padding-bottom: var(--p-4) !important; }
.py-5 { padding-top: var(--p-5) !important; padding-bottom: var(--p-5) !important; }

/* Text Alignment Utility */

/* Default (text-*) */
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

/* Small Screens (text-sm-*) */
@media (min-width: 576px) {
    .text-sm-start { text-align: left !important; }
    .text-sm-center { text-align: center !important; }
    .text-sm-end { text-align: right !important; }
}

/* Medium Screens (text-md-*) */
@media (min-width: 768px) {
    .text-md-start { text-align: left !important; }
    .text-md-center { text-align: center !important; }
    .text-md-end { text-align: right !important; }
}

/* Extra Large Screens (text-xl-*) */
@media (min-width: 1200px) {
    .text-xl-start { text-align: left !important; }
    .text-xl-center { text-align: center !important; }
    .text-xl-end { text-align: right !important; }
}

/* Flexbox Utilities */

/* Display Flex */
.d-flex {display: flex !important;}

/* Direction */
.flex-row {flex-direction: row !important;}
.flex-row-reverse {flex-direction: row-reverse !important;}
.flex-column {flex-direction: column !important;}
.flex-column-reverse {flex-direction: column-reverse !important;}

/* Wrap */
.flex-wrap {flex-wrap: wrap !important;}
.flex-nowrap {flex-wrap: nowrap !important;}
.flex-wrap-reverse {flex-wrap: wrap-reverse !important;}

.flex-fill {flex: 1 1 auto !important;}

/* Justify Content */
.justify-content-start {justify-content: flex-start !important;}
.justify-content-end {justify-content: flex-end !important;}
.justify-content-center {justify-content: center !important;}
.justify-content-between {justify-content: space-between !important;}
.justify-content-around {justify-content: space-around !important;}
.justify-content-evenly {justify-content: space-evenly !important;}

/* Align Items */
.align-items-start {align-items: flex-start !important;}
.align-items-end {align-items: flex-end !important;}
.align-items-center {align-items: center !important;}
.align-items-baseline {align-items: baseline !important;}
.align-items-stretch {align-items: stretch !important;}

/* Align Self */
.align-self-start {align-self: flex-start !important;}
.align-self-end {align-self: flex-end !important;}
.align-self-center {align-self: center !important;}
.align-self-baseline {align-self: baseline !important;}
.align-self-stretch {align-self: stretch !important;}

/* Align Content */
.align-content-start {align-content: flex-start !important;}
.align-content-end {align-content: flex-end !important;}
.align-content-center {align-content: center !important;}
.align-content-between {align-content: space-between !important;}
.align-content-around {align-content: space-around !important;}
.align-content-stretch {align-content: stretch !important;}

/* Gap */
.gap-0 {gap: 0 !important;}
.gap-1 {gap: 0.25rem !important;}
.gap-2 {gap: 0.5rem !important;}
.gap-3 {gap: 0.75rem !important;}
.gap-4 {gap: 1rem !important;}
.gap-5 {gap: 1.25rem !important;}

/* Small Screens (>= 576px) */
@media (min-width: 576px) {
    .d-sm-flex { display: flex !important; }
    .flex-sm-row { flex-direction: row !important; }
    .flex-sm-row-reverse { flex-direction: row-reverse !important; }
    .flex-sm-column { flex-direction: column !important; }
    .flex-sm-column-reverse { flex-direction: column-reverse !important; }
    .justify-content-sm-start { justify-content: flex-start !important; }
    .justify-content-sm-center { justify-content: center !important; }
    .justify-content-sm-end { justify-content: flex-end !important; }
    .align-items-sm-start { align-items: flex-start !important; }
    .align-items-sm-center { align-items: center !important; }
    .align-items-sm-end { align-items: flex-end !important; }
}

/* Medium Screens (>= 768px) */
@media (min-width: 768px) {
    .d-md-flex { display: flex !important; }
    .flex-md-row { flex-direction: row !important; }
    .flex-md-row-reverse { flex-direction: row-reverse !important; }
    .flex-md-column { flex-direction: column !important; }
    .flex-md-column-reverse { flex-direction: column-reverse !important; }
    .justify-content-md-start { justify-content: flex-start !important; }
    .justify-content-md-center { justify-content: center !important; }
    .justify-content-md-end { justify-content: flex-end !important; }
    .align-items-md-start { align-items: flex-start !important; }
    .align-items-md-center { align-items: center !important; }
    .align-items-md-end { align-items: flex-end !important; }
}

/* Extra Large Screens (>= 1200px) */
@media (min-width: 1200px) {
    .d-xl-flex { display: flex !important; }
    .flex-xl-row { flex-direction: row !important; }
    .flex-xl-row-reverse { flex-direction: row-reverse !important; }
    .flex-xl-column { flex-direction: column !important; }
    .flex-xl-column-reverse { flex-direction: column-reverse !important; }
    .justify-content-xl-start { justify-content: flex-start !important; }
    .justify-content-xl-center { justify-content: center !important; }
    .justify-content-xl-end { justify-content: flex-end !important; }
    .align-items-xl-start { align-items: flex-start !important; }
    .align-items-xl-center { align-items: center !important; }
    .align-items-xl-end { align-items: flex-end !important; }
}

.d-block {
    display: block !important;
}


@media (min-width: 576px) {
    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-block {
        display: block !important;
    }
}


.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  user-select: none;
  transition: all 0.15s ease-in-out;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

.btn-secondary {
  color: #fff;
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-secondary:hover {
  background-color: var(--color-secondary-hover);
  border-color: var(--color-secondary-hover);
}

.btn-success {
  color: #fff;
  background-color: var(--color-success);
  border-color: var(--color-success);
}

.btn-success:hover {
  background-color: var(--color-success-hover);
  border-color: var(--color-success-hover);
}

.btn-danger {
  color: #fff;
  background-color: var(--color-danger);
  border-color: var(--color-danger);
}

.btn-danger:hover {
  background-color: var(--color-danger-hover);
  border-color: var(--color-danger-hover);
}

.btn-warning {
  color: #212529;
  background-color: var(--color-warning);
  border-color: var(--color-warning);
}

.btn-warning:hover {
  background-color: var(--color-warning-hover);
  border-color: var(--color-warning-hover);
}

.btn-info {
  color: #fff;
  background-color: var(--color-info);
  border-color: var(--color-info);
}

.btn-info:hover {
  background-color: var(--color-info-hover);
  border-color: var(--color-info-hover);
}

.btn-light {
  color: #212529;
  background-color: var(--color-light);
  border-color: var(--color-light);
}

.btn-light:hover {
  background-color: var(--color-light-hover);
  border-color: var(--color-light-hover);
}

.btn-dark {
  color: #fff;
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}

.btn-dark:hover {
  background-color: var(--color-dark-hover);
  border-color: var(--color-dark-hover);
}

.btn-link {
  color: var(--color-link);
  background-color: transparent;
  border: none;
  padding: 0;
}

.btn-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.text-primary {color: var(--color-primary-text) !important;}
.text-secondary {color: var(--color-secondary-text) !important;}
.text-success {color: var(--color-success-text) !important;}
.text-danger {color: var(--color-danger-text) !important;}
.text-warning {color: var(--color-warning-text) !important;}
.text-info {color: var(--color-info-text) !important;}
.text-light {color: var(--color-light-text) !important;}
.text-dark {color: var(--color-dark-text) !important;}
.text-muted {color: var(--color-muted-text) !important;}
.text-white {color: #fff !important;}
.text-black {color: #000 !important;}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded-lg {
  border-radius: 0.375rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-1 {
  border-radius: 0.125rem !important;
}

.rounded-2 {
  border-radius: 0.2rem !important;
}

.rounded-3 {
  border-radius: 0.375rem !important;
}

.rounded-4 {
  border-radius: 0.5rem !important;
}

.rounded-5 {
  border-radius: 0.75rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

/* Default box shadow */
.box-shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Specific box shadow levels */
.box-shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important; /* Small shadow */
}

.box-shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05) !important; /* Medium shadow */
}

.box-shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05) !important; /* Large shadow */
}

.box-shadow-xl {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04) !important; /* Extra large shadow */
}

.box-shadow-none {
  box-shadow: none !important; /* No shadow */
}

/* Card component */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Default shadow for cards */
}

/* Card body */
.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

/* Card header */
.card-header {
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Card footer */
.card-footer {
  padding: 0.75rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

/* Card image */
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

/* Column */
[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

/* Common classes for column width */
.col-auto {
  flex: 1 0 0%;
  max-width: 100%;
}

/* Col-1 to Col-12 */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive breakpoints: sm */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Responsive breakpoints: md */
@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
  .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
  .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Modal overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

/* Show the modal when active */
.modal.show {
    display: flex;
}

/* Modal dialog */
.modal-dialog {
    background: #fff;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

/* Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

/* Body */
.modal-body {
    padding: 1rem;
    font-size: 1rem;
    color: #212529;
    max-height: 400px;
    overflow-y: auto;
}

/* Footer */
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
}


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.img-responsive {
    display:block;
    width:100% !important;
    height: auto !important;
}

.w-100 {min-width:100% !important;}
.h-100 {min-height: 100% !important;}

.m-auto {margin:auto;}
.mx-auto{ margin-left:auto; margin-right:auto;}

.table-responsive {
    overflow-x:auto;
}
