/* Global Variables */
:root {
    --primary-color: #3498db;
    --secondary-color: #ff00ff; /* Secondary color for other uses */
    --success-color: #27ae60; /* Green for success */
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #8e44ad;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;

    --primary-color-rgb: 52, 152, 219;
    --secondary-color-rgb: 46, 204, 113;
    --success-color-rgb: 39, 174, 96;
    --danger-color-rgb: 231, 76, 60;
    --warning-color-rgb: 243, 156, 18;
    --info-color-rgb: 142, 68, 173;
    --light-color-rgb: 248, 249, 250;
    --dark-color-rgb: 44, 62, 80;

    --font-family-sans: 'Arial', sans-serif;
    --font-family-mono: 'Courier New', monospace;

    --base-font-size: 16px;
    --base-line-height: 1.5;
    --border-radius: 0.25rem;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family-sans);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    color: var(--dark-color);
    background-color: var(--light-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Containers */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap; /* Ensures child elements wrap as needed */
    margin-right: -0.75rem; /* Matches Bootstrap's gutter system */
    margin-left: -0.75rem;  /* Negative margin to counter padding in columns */
}

.row > * {
    padding-right: 0.75rem; /* Space inside each column */
    padding-left: 0.75rem;
    box-sizing: border-box; /* Ensures padding is included in width calculations */
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .row {
        flex-direction: column; /* Stack elements vertically on smaller screens */
        margin-right: 0;
        margin-left: 0;
    }

    .row > * {
        padding-right: 0.5rem; /* Adjust padding for better spacing */
        padding-left: 0.5rem;
        width: 100%; /* Ensure full width usage */
    }
}


.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Base Columns */
.col-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
.col-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
.col-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
.col-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
.col-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Extra Small (xs) - Default (No media query needed) */

/* Small (sm) */
@media (min-width: 576px) {
  .col-sm-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-sm-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
  .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
  .col-sm-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-sm-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
  .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
  .col-sm-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-sm-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
  .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
  .col-sm-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-sm-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
  .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium (md) */
@media (min-width: 768px) {
  .col-md-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-md-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-md-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-md-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
  .col-md-9 { flex: 0 0 75%; max-width: 75%; }
  .col-md-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-md-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
  .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Large (lg) */
@media (min-width: 992px) {
  .col-lg-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-lg-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-lg-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-lg-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
  .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
  .col-lg-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-lg-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
  .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra Large (xl) */
@media (min-width: 1200px) {
  .col-xl-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-xl-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
  .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xl-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-xl-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
  .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xl-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-xl-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
  .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xl-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-xl-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
  .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Extra Small (xxl) */
@media (min-width: 1400px) {
  .col-xxl-1 { flex: 0 0 8.3333%; max-width: 8.3333%; }
  .col-xxl-2 { flex: 0 0 16.6666%; max-width: 16.6666%; }
  .col-xxl-3 { flex: 0 0 25%; max-width: 25%; }
  .col-xxl-4 { flex: 0 0 33.3333%; max-width: 33.3333%; }
  .col-xxl-5 { flex: 0 0 41.6666%; max-width: 41.6666%; }
  .col-xxl-6 { flex: 0 0 50%; max-width: 50%; }
  .col-xxl-7 { flex: 0 0 58.3333%; max-width: 58.3333%; }
  .col-xxl-8 { flex: 0 0 66.6666%; max-width: 66.6666%; }
  .col-xxl-9 { flex: 0 0 75%; max-width: 75%; }
  .col-xxl-10 { flex: 0 0 83.3333%; max-width: 83.3333%; }
  .col-xxl-11 { flex: 0 0 91.6666%; max-width: 91.6666%; }
  .col-xxl-12 { flex: 0 0 100%; max-width: 100%; }
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

/* Primary Button */
.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: rgba(var(--primary-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--primary-color-rgb), 0.8); /* Dimmed effect */
}

/* Secondary Button */
.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: rgba(var(--secondary-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--secondary-color-rgb), 0.8); /* Dimmed effect */
}

/* Success Button */
.btn-success {
    color: #fff;
    background-color: var(--success-color);
    border: 1px solid var(--success-color);
}

.btn-success:hover {
    background-color: rgba(var(--success-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--success-color-rgb), 0.8); /* Dimmed effect */
}

/* Danger Button */
.btn-danger {
    color: #fff;
    background-color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.btn-danger:hover {
    background-color: rgba(var(--danger-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--danger-color-rgb), 0.8); /* Dimmed effect */
}

/* Warning Button */
.btn-warning {
    color: #fff;
    background-color: var(--warning-color);
    border: 1px solid var(--warning-color);
}

.btn-warning:hover {
    background-color: rgba(var(--warning-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--warning-color-rgb), 0.8); /* Dimmed effect */
}

/* Info Button */
.btn-info {
    color: #fff;
    background-color: var(--info-color);
    border: 1px solid var(--info-color);
}

.btn-info:hover {
    background-color: rgba(var(--info-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--info-color-rgb), 0.8); /* Dimmed effect */
}

/* Light Button */
.btn-light {
    color: var(--dark-color);
    background-color: var(--light-color);
    border: 1px solid var(--light-color);
}

.btn-light:hover {
    background-color: rgba(var(--light-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--light-color-rgb), 0.8); /* Dimmed effect */
}

/* Dark Button */
.btn-dark {
    color: #fff;
    background-color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

.btn-dark:hover {
    background-color: rgba(var(--dark-color-rgb), 0.8); /* Dimmed effect */
    border-color: rgba(var(--dark-color-rgb), 0.8); /* Dimmed effect */
}
/* Badge */
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--border-radius);
}

.badge-primary {
    color: #fff;
    background-color: var(--primary-color);
}

.badge-secondary {
    color: #fff;
    background-color: var(--secondary-color);
}

.badge-success {
    color: #fff;
    background-color: var(--success-color);
}

.badge-danger {
    color: #fff;
    background-color: var(--danger-color);
}

.badge-warning {
    color: #212529;
    background-color: var(--warning-color);
}

.badge-info {
    color: #fff;
    background-color: var(--info-color);
}

.badge-light {
    color: #212529;
    background-color: var(--light-color);
}

.badge-dark {
    color: #fff;
    background-color: var(--dark-color);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-light {
    color: var(--light-color) !important;
}

.text-dark {
    color: var(--dark-color) !important;
}

.text-white {
    color: #ffffff !important;
}

.text-muted {
    color: #6c757d !important;
}

/* Background Colors */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.bg-success {
    background-color: var(--success-color) !important;
}

.bg-danger {
    background-color: var(--danger-color) !important;
}

.bg-warning {
    background-color: var(--warning-color) !important;
}

.bg-info {
    background-color: var(--info-color) !important;
}

.bg-light {
    background-color: var(--light-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

.bg-white {
    background-color: #ffffff !important;
}


/* Utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Margin Utilities */

/* Margin 0 */
.m-0 {
    margin: 0 !important;
}

.mt-0, .my-0 {
    margin-top: 0 !important;
}

.mr-0, .mx-0 {
    margin-right: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.ml-0, .mx-0 {
    margin-left: 0 !important;
}

/* Margin 1 */
.m-1 {
    margin: 0.25rem !important;
}

.mt-1, .my-1 {
    margin-top: 0.25rem !important;
}

.mr-1, .mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1, .my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1, .mx-1 {
    margin-left: 0.25rem !important;
}

/* Margin 2 */
.m-2 {
    margin: 0.5rem !important;
}

.mt-2, .my-2 {
    margin-top: 0.5rem !important;
}

.mr-2, .mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2, .my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2, .mx-2 {
    margin-left: 0.5rem !important;
}

/* Margin 3 */
.m-3 {
    margin: 1rem !important;
}

.mt-3, .my-3 {
    margin-top: 1rem !important;
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.ml-3, .mx-3 {
    margin-left: 1rem !important;
}

/* Margin 4 */
.m-4 {
    margin: 1.5rem !important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important;
}

/* Margin 5 */
.m-5 {
    margin: 3rem !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mr-5, .mx-5 {
    margin-right: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.ml-5, .mx-5 {
    margin-left: 3rem !important;
}

/* Padding Utilities */

/* Padding 0 */
.p-0 {
    padding: 0 !important;
}

.pt-0, .py-0 {
    padding-top: 0 !important;
}

.pr-0, .px-0 {
    padding-right: 0 !important;
}

.pb-0, .py-0 {
    padding-bottom: 0 !important;
}

.pl-0, .px-0 {
    padding-left: 0 !important;
}

/* Padding 1 */
.p-1 {
    padding: 0.25rem !important;
}

.pt-1, .py-1 {
    padding-top: 0.25rem !important;
}

.pr-1, .px-1 {
    padding-right: 0.25rem !important;
}

.pb-1, .py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1, .px-1 {
    padding-left: 0.25rem !important;
}

/* Padding 2 */
.p-2 {
    padding: 0.5rem !important;
}

.pt-2, .py-2 {
    padding-top: 0.5rem !important;
}

.pr-2, .px-2 {
    padding-right: 0.5rem !important;
}

.pb-2, .py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2, .px-2 {
    padding-left: 0.5rem !important;
}

/* Padding 3 */
.p-3 {
    padding: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.pr-3, .px-3 {
    padding-right: 1rem !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.pl-3, .px-3 {
    padding-left: 1rem !important;
}

/* Padding 4 */
.p-4 {
    padding: 1.5rem !important;
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important;
}

/* Padding 5 */
.p-5 {
    padding: 3rem !important;
}

.pt-5, .py-5 {
    padding-top: 3rem !important;
}

.pr-5, .px-5 {
    padding-right: 3rem !important;
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}

.pl-5, .px-5 {
    padding-left: 3rem !important;
}


.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }

/* Display Flex */
.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

/* Flex 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;
}

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

/* Justify Content */
.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-end {
    justify-content: flex-end !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-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

/* Align Content */
.align-content-start {
    align-content: flex-start !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-evenly {
    align-content: space-evenly !important;
}

/* Align Self */
.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

/* Text Alignment Utilities */
.text-start {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-end {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}


/* Forms */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

input, select, textarea {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-color);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

button {
    cursor: pointer;
}

/* Form Control */

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-color, #495057);
    background-color: var(--white-color, #fff);
    background-clip: padding-box;
    border: 1px solid var(--border-color, #ced4da);
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: var(--text-color, #495057);
    background-color: var(--white-color, #fff);
    border-color: var(--primary-color, #80bdff);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::placeholder {
    color: var(--placeholder-color, #6c757d);
    opacity: 1;
}

.form-control:disabled, 
.form-control[readonly] {
    background-color: var(--disabled-bg, #e9ecef);
    opacity: 1;
}

.form-control-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.form-control-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}


/* Form Check (for checkboxes and radios) */

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-label {
    margin-bottom: 0;
    display: inline-block;
    cursor: pointer;
}

.form-label {
    display: block; /* Ensures labels stack properly above form controls */
    font-size: 1rem; /* Adjust size for readability */
    font-weight: 600; /* Bold for emphasis */
    margin-bottom: 5px; /* Space below the label */
    cursor: pointer; /* Add pointer for accessibility */
}


/* Custom Components - Card */
.card {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    margin-bottom: 1rem;
}

/* Base Alert Styles */
.alert {
    padding: 20px;
    margin: 10px 0;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Alert Types */

/* Success */
.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Warning */
.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}

/* Danger */
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* Info */
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

/* Default (Neutral) */
.alert-default {
    background-color: #e2e3e5;
    color: #383d41;
    border-color: #d6d8db;
}

/* Alert with Close Button */
.alert .close-btn {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: inherit;
    cursor: pointer;
    line-height: 1;
}

/* Width Utilities */

/* 25% Width */
.w-25 {
    width: 25% !important;
}

/* 50% Width */
.w-50 {
    width: 50% !important;
}

/* 75% Width */
.w-75 {
    width: 75% !important;
}

/* 100% Width */
.w-100 {
    width: 100% !important;
}

/* Auto Width */
.w-auto {
    width: auto !important;
}

/* Min Width Utilities */
.w-min-0 {
    min-width: 0 !important;
}

.w-min-25 {
    min-width: 25% !important;
}

.w-min-50 {
    min-width: 50% !important;
}

.w-min-75 {
    min-width: 75% !important;
}

.w-min-100 {
    min-width: 100% !important;
}

/* Max Width Utilities */
.w-max-25 {
    max-width: 25% !important;
}

.w-max-50 {
    max-width: 50% !important;
}

.w-max-75 {
    max-width: 75% !important;
}

.w-max-100 {
    max-width: 100% !important;
}

.w-max-auto {
    max-width: auto !important;
}




