/* ===========================
   VARIABLES CSS
   =========================== */
:root {
    --primary-color: #258cfb;
    --primary-hover: #1a6dc9;
    --secondary-color: #6c757d;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --border-color: #e5e7eb;
    --border-color-dark: #d1d5db;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition-speed: 0.3s;
    --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --box-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --background-light: #f9fafb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
}

/* ===========================
   TYPOGRAPHIE DE BASE
   =========================== */
html {
    font-size: 14px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
}

/* ===========================
   ÉTATS DE FOCUS & BOUTONS
   =========================== */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--primary-color);
    outline: none;
}

.btn {
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), #155a9e);
    box-shadow: var(--box-shadow-lg);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
}

/* ===========================
   FORMULAIRES
   =========================== */
.form-control,
.form-select {
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    transition: all var(--transition-speed) ease;
    padding: 0.625rem 0.875rem;
    font-size: 0.95rem;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--border-color-dark);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(37, 140, 251, 0.15);
}

.form-floating {
    position: relative;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--text-secondary);
    text-align: end;
    transition: all var(--transition-speed) ease;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
    opacity: 0.6;
}

.form-floating > label {
    color: var(--text-secondary);
    transition: all var(--transition-speed) ease;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
    font-weight: 500;
}

/* ===========================
   UTILITAIRES
   =========================== */
.currency-symbol-small {
    font-size: 0.7em;
    vertical-align: super;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    font-size: 0.9em;
    padding: 1rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    line-height: 5px;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

footer a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

footer .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

footer p {
    margin-bottom: 0;
    line-height: 5px;
}

footer .row {
    margin-top: 0;
    margin-bottom: 0;
}

footer div {
    line-height: 5px;
}

/* ===========================
   TABLEAUX
   =========================== */
.bordered-table {
    border: 2px solid var(--border-color); /* bordure extérieure de 2px à la table.*/
    border-radius: var(--border-radius);/*Arrondit les coins de la table.*/
    padding: 0;/**/
    overflow: hidden;/*Coupe tout ce qui dépasse*/
    box-shadow: var(--box-shadow);/**/
    background: white;/**/
}

.bordered-table th,
.bordered-table td {
    border-right: 2px solid var(--border-color);
    padding: 1rem 1.25rem;
    vertical-align: middle;
}

.bordered-table th:last-child,
.bordered-table td:last-child {
    border-right: none;
}

.bordered-table thead {
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
}

.bordered-table thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color-dark);
}

.bordered-table tbody tr {
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.bordered-table tbody tr:last-child {
    border-bottom: none;
}

.bordered-table tbody tr:hover {
    background-color: rgba(37, 140, 251, 0.06);
    box-shadow: inset 0 0 0 1px rgba(37, 140, 251, 0.2);
}

.custom-table {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.custom-table th,
.custom-table td {
    border-right: 1px solid var(--border-color);
    padding: 0.875rem 1rem;
}

.custom-table th:last-child,
.custom-table td:last-child {
    border-right: none;
}

/* ===========================
   CONTENEUR
   =========================== */
.container {
    max-width: 90%;
    padding: 0 1rem;
}

@media (min-width: 1400px) {
    .container {
        max-width: 85%;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 90%;
    }
}

/* ===========================
   LOGOS
   =========================== */
.logo {
    height: 35px;
    transition: all var(--transition-speed) ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    transform: scale(1.05);
}

.dark-logo {
    display: none;
}

.light-logo {
    display: inline-block;
}

/* ===========================
   BACKGROUNDS & DÉCORATION
   =========================== */
.home-background {
    background-image: var(--home-bg-logo);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    min-height: 500px;
    opacity: 0.3;
    position: relative;
}

.home-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(249, 250, 251, 0.9) 100%);
    pointer-events: none;
}

/* ===========================
   LAYOUT FLEX
   =========================== */
.d-flex-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.search-box {
    flex-grow: 1;
    min-width: 280px;
}

.filter-box {
    min-width: 250px;
    max-width: 320px;
}

@media (max-width: 768px) {
    .d-flex-container {
        flex-direction: column;
    }
    .table-responsive {
        overflow-x: auto !important;
    }
    .search-box,
    .filter-box {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
}

/* ===========================
   CARDS & COMPOSANTS
   =========================== */
.card {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
    background: white;
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--box-shadow-hover);
    transform: translateY(-4px);
    border-color: var(--border-color-dark);
}

.card-header {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    padding: 1rem 1.25rem;
    color: var(--text-primary);
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background-color: #f9fafb;
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

/* ===========================
   BADGES & ALERTS
   =========================== */
.badge {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.35em 0.65em;
    font-size: 0.85em;
}

.alert {
    border-radius: var(--border-radius-sm);
    border-left: 4px solid;
    box-shadow: var(--box-shadow);
}

.alert-success {
    background-color: #ecfdf5;
    border-color: var(--success-color);
    color: #065f46;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: var(--danger-color);
    color: #991b1b;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: var(--warning-color);
    color: #92400e;
}

.alert-info {
    background-color: #eff6ff;
    border-color: var(--primary-color);
    color: #1e40af;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    background: white !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    z-index: 1030 !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary) !important;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius-sm);
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(37, 140, 251, 0.08);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(37, 140, 251, 0.12);
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: var(--box-shadow-lg);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem;
    overflow: visible !important;
    max-height: none !important;
    z-index: 1031 !important;
}

.dropdown-item {
    border-radius: 6px;
    transition: all var(--transition-speed) ease;
    padding: 0.625rem 1rem;
    color: var(--text-primary);
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(37, 140, 251, 0.1), rgba(37, 140, 251, 0.05));
    color: var(--primary-color);
    transform: translateX(4px);
}

/* ===========================
   PAGINATION
   =========================== */
.pagination {
    gap: 0.5rem;
}

.page-link {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all var(--transition-speed) ease;
    padding: 0.5rem 0.875rem;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-md);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

/* ===========================
   LISTES SANS SCROLL
   =========================== */

/* Éliminer le scroll des list-groups */
.list-group {
    overflow: visible !important;
    max-height: none !important;
}

.list-group-item {
    overflow: visible !important;
}

/* Éliminer le scroll des listes générales */
ul,
ol {
    overflow: visible !important;
    max-height: none !important;
}

/* Éliminer le scroll des accordions */
.accordion {
    overflow: visible !important;
}

.accordion-body {
    overflow: visible !important;
    max-height: none !important;
}

/* Éliminer le scroll des modals si nécessaire */
.modal-body {
    overflow-y: auto !important;
    max-height: 70vh !important;
}

/* Éliminer le scroll des offcanvas */
.offcanvas-body {
    overflow-y: auto !important;
}

/* Conteneurs avec classe personnalisée */
.list-container,
.items-list {
    overflow: visible !important;
    max-height: none !important;
}

/* Tables sans scroll horizontal sauf si nécessaire */
.table-responsive {
    overflow-x: visible  !important;
}

/* ===========================
   LOGIN PAGE 
   =========================== */
.login-wrap {
    min-height: 520px;
    display: flex;
    font-family: 'DM Sans', sans-serif;
    max-width: 860px;
    margin: 3rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.login-left {
    width: 44%;
    background: #1a1a2e;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.login-left::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(99, 82, 255, 0.18);
    top: -80px;
    left: -80px;
}

.login-left::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(29, 158, 117, 0.14);
    bottom: -60px;
    right: -40px;
}

.brand {
    position: relative;
    z-index: 1;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6352ff;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle;
}

.brand-name {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.left-tagline {
    position: relative;
    z-index: 1;
}

.left-tagline h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin: 0 0 1rem;
}

.left-tagline h1 em {
    font-style: italic;
    color: #9d91ff;
}

.left-tagline p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin: 0;
}

.login-right {
    width: 56%;
    background: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    font-weight: 400;
    color: #1a1a2e;
    margin: 0 0 0.25rem;
}

.form-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 2rem;
}

.field-group {
    margin-bottom: 1rem;
}

.field-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.field-input {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: #1a1a2e;
    background: #f7f7f9;
    border: 0.5px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.field-input:focus {
    border-color: #6352ff;
    box-shadow: 0 0 0 3px rgba(99, 82, 255, 0.12);
}

.pw-wrap {
    position: relative;
}

.pw-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #888;
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
}

.remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}

.remember-row input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #6352ff;
}

.remember-row label {
    font-size: 13px;
    color: #666;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    background: #6352ff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.15s, transform 0.1s;
}

.submit-btn:hover { background: #5243e0; }
.submit-btn:active { transform: scale(0.99); }

.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.25rem 0;
}

.divider-line {
    flex: 1;
    height: 0.5px;
    background: #e5e5e5;
}

.divider span {
    font-size: 12px;
    color: #aaa;
}

.links-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.links-row a {
    color: #6352ff;
    text-decoration: none;
}

.links-row a:hover { text-decoration: underline; }

.alert:empty {
    display: none;
}

/* ===========================
   LISTES MODERNES (style cmd-*)
   =========================== */
.cmd-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cmd-search-wrap {
    flex: 1;
    max-width: 320px;
    min-width: 220px;
    position: relative;
    flex-shrink: 0;
}

/* Champ recherche — fond gris léger, pas de bordure noire */
.cmd-search-wrap .mud-input-root,
.cmd-filter-wrap .mud-input-root {
    background: #ffffff !important;
    border-radius: 8px !important;
    border: none !important;
    box-shadow: none !important;
}

.cmd-search-wrap .mud-input-root:hover,
.cmd-filter-wrap .mud-input-root:hover {
    background: #ffffff !important;
}

.cmd-search-wrap .mud-input-root.mud-input-root-adorned-start,
.cmd-filter-wrap .mud-input-root.mud-input-root-adorned-start {
    padding-left: 8px !important;
}

/* Supprimer toutes les bordures MudBlazor sur ces champs */
.cmd-search-wrap .mud-input-underline::before,
.cmd-search-wrap .mud-input-underline::after,
.cmd-search-wrap .mud-input-outlined fieldset,
.cmd-filter-wrap .mud-input-underline::before,
.cmd-filter-wrap .mud-input-underline::after,
.cmd-filter-wrap .mud-input-outlined fieldset {
    border: none !important;
}

.cmd-search-wrap .mud-input,
.cmd-filter-wrap .mud-input {
    background: transparent !important;
}

/* Label flottant */
.cmd-filter-wrap .mud-input-label {
    color: #6b7280 !important;
    font-size: 13px !important;
}

.cmd-filter-wrap .mud-input-label.mud-input-label-animated {
    font-size: 11px !important;
}

.cmd-filter-wrap {
    min-width: 220px;
}

.cmd-table-wrap {
    background: white;
    border: 0.5px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.cmd-table-wrap .mud-table {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* En-têtes */
.cmd-table-wrap thead tr {
    background: #f9fafb !important;
}

.cmd-table-wrap th {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    border-bottom: 0.5px solid #e5e7eb !important;
    padding: 10px 14px !important;
}

/* Cellules */
.cmd-table-wrap td {
    font-size: 13px !important;
    padding: 12px 14px !important;
    border-bottom: 0.5px solid #f3f4f6 !important;
    vertical-align: middle !important;
}

.cmd-table-wrap tbody tr:last-child td {
    border-bottom: none !important;
}

.cmd-table-wrap tbody tr:hover td {
    background: #f9fafb !important;
}

/* Avatar */
.cmd-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    flex-shrink: 0;
    background: #E6F1FB;
    color: #185FA5;
}

.cmd-client-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cmd-client-name {
    font-weight: 500;
    font-size: 13px;
    color: #111827;
    line-height: 1.3;
}

.cmd-created-by {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.3;
}

/* Date */
.cmd-date-main {
    font-size: 13px;
    color: #111827;
    line-height: 1.3;
}

.cmd-date-time {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.3;
}

/* Numéro commande */
.cmd-numero {
    font-weight: 500;
    font-size: 13px;
    color: #111827;
}

/* Produits */
.cmd-products {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cmd-products li {
    font-size: 12px;
    color: #040404;
    padding: 1px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.cmd-products .free-tag {
    color: #3B6D11;
    font-size: 11px;
}

/* Total */
.cmd-total {
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
    color: #111827;
}

/* Badges statut */
.cmd-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.cmd-badge .mud-icon-root {
    font-size: 13px !important;
    width: 13px !important;
    height: 13px !important;
}

.cmd-badge-blue   { background: #E6F1FB; color: #185FA5; }
.cmd-badge-green  { background: #EAF3DE; color: #3B6D11; }
.cmd-badge-gray   { background: #F1EFE8; color: #5F5E5A; }
.cmd-badge-amber  { background: #FAEEDA; color: #854F0B; }
.cmd-badge-purple { background: #EEEDFE; color: #534AB7; }

/* Boutons d'action */
.cmd-actions {
    display: flex;
    gap: 4px;
    justify-content: flex-end;
}

.cmd-actions .mud-icon-button {
    width: 28px !important;
    height: 28px !important;
    border: 0.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    color: #6b7280 !important;
    transition: all 0.12s ease !important;
}

.cmd-actions .mud-icon-button:hover {
    background: #f3f4f6 !important;
    color: #111827 !important;
    border-color: #d1d5db !important;
}

.cmd-actions .cmd-btn-danger:hover {
    background: #FCEBEB !important;
    color: #A32D2D !important;
    border-color: #F09595 !important;
}

.cmd-pending {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
}

/* Pagination dans les tables modernes */
.cmd-table-wrap .mud-table-pagination {
    border-top: 0.5px solid #e5e7eb !important;
    font-size: 12px !important;
    padding: 4px 8px !important;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    header,
    footer,
    #action-buttons,
    .container > h2,
    #pdfTypeModal,
    .no-print,
    .btn,
    .navbar {
        display: none !important;
    }

    .container {
        max-width: 100% !important;
    }

    body {
        padding-top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background: white !important;
    }

    .card,
    .bordered-table {
        box-shadow: none !important;
        page-break-inside: avoid;
        border: 1px solid #000;
    }

    a {
        text-decoration: none;
        color: inherit !important;
    }

    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .table {
        border: 1px solid #000;
    }

    .table th,
    .table td {
        border: 1px solid #000 !important;
    }
}
