﻿/* Base Styles and Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

:root {
    --primary-color: #1b6ec2;
    --secondary-color: #169b9c;
    --dark-bg: #000000
    ;
    --text-light: #ffffff;
    --border-color: #e5e5e5;
    --danger: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
}

/* Reset and Base Styles */
html {
    font-size: 14px;
    font-family: Poppins, sans-serif;
    position: relative;
    min-height: 100%;
    background: var(--dark-bg);
}

body {
    background: none !important;
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* Typography */
.pagetitle h1 {
    font-size: 1.25em;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px #000;
    text-transform: uppercase;
    margin-bottom: 3px
}

.sectiontitle {
    text-shadow: 0 0 75px #49ff18, 2px 2px 2px rgba(206,89,55,0);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        text-decoration: none;
        color: var(--secondary-color);
    }

/* Layout Components */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.content-tabs {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0;
}

    .content-tabs .nav-link {
        color: #6c757d;
        background-color: transparent;
        border: none;
        padding: 1rem 1.5rem;
        margin-bottom: -1px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .content-tabs .nav-link:hover {
            color: #495057;
            border-bottom: 2px solid #dee2e6;
        }

        .content-tabs .nav-link.active {
            color: #000;
            background-color: transparent;
            border-bottom: 2px solid #0d6efd;
        }

.tab-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 1.5rem;
}

.nav-tabs .nav-link {
    background-color: #d0d0d0;
    border: 1px solid #dee2e6;
    margin-right: 4px;
}

    .nav-tabs .nav-link.active {
        background-color: #fff;
        border-bottom-color: transparent;
    }


.alert-wallet {
    background: linear-gradient(90deg, rgba(255,74,74,1) 0%, rgba(255,167,74,1) 100%);
}

#searchInput {
    flex-grow: 1; /* Allows the textbox to take up the remaining space */
}

.form-select,
.btn {
    white-space: nowrap; /* Prevents the dropdowns and button from shrinking */
}

/* Optional: Adjust badge font size */
.badge {
    font-size: 0.9em;
}
/* Navigation */
.navbar-light .navbar-brand {
    color: var(--secondary-color);
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: 700;
}

img.tokenimg {
    max-width: 26px
}

.bg-gray-800{ opacity:.85 ;background-color:#000}
/* 1) Glossy, embossed card appearance */

.glossy-button {
    font-size: 1.1rem;
    padding: 0.4rem 0.7rem;
    color: #fff !important;
    font-weight:bold;
    background: linear-gradient(135deg, #1b6ec2, #169b9c);
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}


.glossy-card {
    border-radius: 1rem; /* more rounded corners */
    background: linear-gradient( 135deg, #ffffff 0%, #f9f9ff 100% );
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.7), inset -1px -1px 2px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.07);
    border: 1px solid #ccddeecc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom:0px!important;
}

    .glossy-card:hover {
        transform: scale(1.01);
        box-shadow: inset 1px 1px 2px rgba(255,255,255,0.7), inset -1px -1px 2px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.12);
    }

.purchase-button {
    font-weight: bold !important;
    font-size: 2rem !important;
}


/* 2) Larger rank badge with a fun style (could be "glossy" too) */
.rank-badge-large {
    font-size: 1.1rem; /* bigger text */
    padding: 0.4rem 0.7rem;
    color: #fff;
    background: linear-gradient(135deg, #1b6ec2, #169b9c);
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    font-weight: 600;
}

/* 3) Glossy badges: "Subs", "Videos", "Views", "Revenue" */
.glossy-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
    border-radius: 0.5rem;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    background: linear-gradient( 135deg, #6c757d, /* top color */
    #565e64 /* bottom color */
    );
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 3px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .glossy-badge:hover {
        transform: translateY(-1px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 6px rgba(0,0,0,0.3);
    }

/* 4) Channel-card general adjustments 
   (already have .channel-card in your code, but we can override if needed) */
.channel-card {
    border-radius: 1rem !important; /* ensure it's more rounded than default */
    border: none !important; /* remove default border if you prefer */
}

.channel-title {z-index:999; position:relative; font-weight:700
}
/* 5) Avatar & Banner styling if needed (some already inline) */
.avatar-container .avatar {
    /* already styled inline, but if you want a default style: */
    /* e.g., if you want a subtle drop shadow: */
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* 6) Adjust spacing in the row-based layout if you want less margin: */
.card-body .row > [class*="col-"] {
    margin-bottom: 0.5rem; /* example, or remove if you prefer more space */
}

/* Talent Cards */
/****************************************************
 * 1) Light futuristic card with beveled edges
 ****************************************************/
.futuristic-light-card {
    position: relative;
    /* A subtle light gradient for a “glossy” look */
    background: linear-gradient( to bottom, #ffffff 0%, #f9f9ff 100% );
    border-radius: 8px;
    /* Subtle 3D/Bevel effect: layering multiple shadows */
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), /* highlight top-left inside */
    inset -1px -1px 2px rgba(0,0,0,0.06), /* shadow bottom-right inside */
    0 2px 6px rgba(0,0,0,0.07); /* outer drop shadow */
    border: 1px solid #ccddee; /* a soft “futuristic” border */
    overflow: hidden; /* ensures ribbons etc. get clipped if needed */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .futuristic-light-card:hover {
        transform: scale(1.01);
        box-shadow: inset 1px 1px 2px rgba(255,255,255,0.6), inset -1px -1px 2px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.12); /* slightly stronger outer shadow on hover */
    }
.talent-name {
    color: #FFFFFF;
    background: #b8b8b8;
    text-shadow: 4px 3px 0 #000;
}
/****************************************************
 * 2) Diagonal ribbon
 ****************************************************/
.rank-ribbon {
    position: absolute;
    /* Adjust top & right so the bottom corner is off-screen, 
     preventing it from sticking out. 
     Increase negative right or reduce top if needed. */
    top: 0.75rem;
    right: -3.5rem;
    width: 140px;
    text-align: center;
    transform: rotate(45deg);
    font-weight: 600;
    color: #fff;
    padding: 0.5rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 3;
    border-radius: 4px;
    /* Because of the angle, you might see a corner. 
     Overflow hidden on .futuristic-light-card helps. */
}

/****************************************************
 * 3) Glow or highlight on rank-ribbon
 *    Reuse your .bg-* classes for color
 ****************************************************/
.bg-purple-500 {
    background-color: #a43ef8 !important;
    box-shadow: 0 0 5px 1px rgba(164, 62, 248, 0.6);
}

.bg-blue-500 {
    background-color: #4ea3f8 !important;
    box-shadow: 0 0 5px 1px rgba(78,163,248,0.6);
}

.bg-cyan-500 {
    background-color: #00f5ff !important;
    box-shadow: 0 0 5px 1px rgba(0,245,255,0.6);
}

.bg-teal-500 {
    background-color: #20c997 !important;
    box-shadow: 0 0 5px 1px rgba(32,201,151,0.6);
}

.bg-gray-500 {
    background-color: #6c757d !important;
    box-shadow: 0 0 5px 1px rgba(108,117,125,0.4);
}

 
 

/****************************************************
 * 5) Stats row & icons
 ****************************************************/
.futuristic-stats-row {
    margin-top: 1rem; /* or less if you want it tighter */
}

/* Remove bottom margin from the icons so there's not “too much margin below.” */
.icon-no-bottom-margin {
    margin-bottom: 0 !important;
}

/* If you want a faint dividing line between stats: */
.futuristic-stats-row > div:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 1rem;
    margin-right: 1rem;
}



.nav-item .text-black {
    font-size: 1.6em !important;
    color: var(--secondary-color);
    font-weight: 700;
}
/* channelbannerpagebanner  */

.channelbannerpagebanner{ background-color:white}
/* The main container for each channel card */
.channel-card {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: none; /* if you don't want the default Bootstrap card border */
}

    /* Hover effect - "lift" the card a bit */
    .channel-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    /* Active click effect - small "push down" */
    .channel-card:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

/* The "rank" badge in the top-right corner */
.rank-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    background: #0d6efd; /* or some gradient if you prefer */
    color: white;
}

/* Banner container wrapper (relative positioning) */
.channel-card-banner {
    position: relative;
    width: 100%;
    padding-bottom: 16%;
    background-color: #eee;
    overflow: hidden; /* if you want clipped images */
}

/* The banner image */
.channel-card-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The avatar overlay in bottom-left corner */
.channel-card-avatar {
    position: absolute;
    bottom: 5px;
    left: 5px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
}

/* The card body inside the channel card */
.channel-card-body {
    padding: 1rem;
}

/* Score box container */
.stat-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    padding: 0.5rem;
}

/* Score box heading */
.stat-title {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #555;
}

/* Score box value */
.stat-value {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.1rem;
}


/* Profile Banner */
.profile-banner {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 200px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    /* The background-image will be handled dynamically via React inline styles */
}

/* Profile Avatar */
.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Search Component */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-btn {
    height: 38px;
}

/* Balance Container */
.balance-container {
    position: relative;
    z-index: 1049;
}

    .balance-container .dropdown-menu {
        margin-top: 0.5rem;
        min-width: 160px;
        z-index: 1049;
    }

    .balance-container .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

        .balance-container .dropdown-item:hover {
            color: var(--secondary-color);
            background-color: #f8f9fa;
        }

/* Footer */
.footer {
    white-space: nowrap;
    padding: 2rem 0;
    margin-top: 3rem;
}

#LogoName a {
    font-size: 3em !important;
    color: var(--text-light) !important;
}

#aboutustext {
    font-size: 1em !important;
    color: var(--text-light) !important;
}

/* Cards and Components */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.stats-card {
    transition: all 0.3s ease;
}

    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

/* Video Upload Components */
.thumbnail-preview {
    transition: transform 0.3s ease;
    border: 2px solid #e9ecef;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.thumbnail-upload-zone {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .thumbnail-upload-zone:hover {
        border-color: var(--primary-color);
        background-color: rgba(27, 110, 194, 0.05);
    }

.thumbnail-upload-input {
    display: none;
}

/* Verification Components */
.verification-checklist {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.checklist-item {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

    .checklist-item i {
        margin-right: 10px;
    }

.terms-container {
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-content {
    animation: fadeIn 0.5s ease-out;
}

/* Utility Classes */
.border-top {
    border-top: 1px solid var(--border-color);
}

.border-bottom {
    border-bottom: 1px solid var(--border-color);
}

.box-shadow {
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.gearimage {
    max-height: 65px;
}

/* Alert and Prompt Components */
#globalPromptContainer {
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
}

#walletAlert {
    background-color: var(--warning);
    color: #000;
    border: none;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1050;
}

    #walletAlert button {
        font-size: 0.9rem;
    }
/* Main (global) placeholders for content, tab content, etc. */
.content-tabs .nav-link {
    color: #6c757d;
    background-color: transparent;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: -1px;
    font-weight: 500;
    transition: all 0.2s ease;
}

    .content-tabs .nav-link:hover {
        color: #495057;
        border-bottom: 2px solid #dee2e6;
    }

    .content-tabs .nav-link.active {
        color: #000;
        background-color: transparent;
        border-bottom: 2px solid #0d6efd;
    }

.tab-content {
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    padding: 1.5rem;
}

/* Navbar + Header Classes */
.site-navbar {
    /* Additional styling or box-shadow if desired */
}

.site-navbar__brand {
}

.site-navbar__logo {
    width: 36px;
    height: auto;
}

.site-navbar__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.site-navbar__search {
}

.site-navbar__search-btn {
}

.site-navbar__balance {
}

.site-navbar__balance-btn {
}

.site-navbar__balance-icon {
}

/* Balance container (dropdown) */
.balance-container {
    position: relative;
    z-index: 1049;
}

    .balance-container .dropdown-menu {
        margin-top: 0.5rem;
        min-width: 160px;
        z-index: 1049;
    }

    .balance-container .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

        .balance-container .dropdown-item:hover {
            color: var(--secondary-color);
            background-color: #f8f9fa;
        }

/* Footer Classes */
.site-footer {
    /* unify your footer styling; background: #343a40 etc. */
    white-space: nowrap;
    padding: 2rem 0;
    margin-top: 3rem;
}

.site-footer__brand {
}

.site-footer__logo {
}

.site-footer__title {
    font-size: 1.2rem;
    font-weight: 700;
}

.site-footer__disclaimers a {
    color: #bbb;
    transition: color 0.3s;
}

    .site-footer__disclaimers a:hover {
        color: #fff;
    }

.site-footer__social img {
    width: 28px;
    height: 28px;
}

/* Utility & Helper Classes */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}

    .btn-primary:hover {
        background-color: #155592;
        border-color: #124d82;
    }

.btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: var(--text-light);
}
/* ... (any remaining classes from your existing code) */

/* DexScreener embed example (could be global or local) */
#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%; /* default ratio for mobile */
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 60%; /* narrower ratio on wide screens */
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}

/* Media Query Adjustments */

@media (min-width: 420px) {
    a.navbar-brand {
        font-size: 2em;
    }
}


    @media (min-width: 768px) {
        html {
            font-size: 16px;
/*            background: url(/img/bg.jpg) no-repeat center center fixed;
            background-size: cover;*/
        }

        img.tokenimg {
            max-width: auto
        }

        a.navbar-brand {
            font-size: 2.3em;
        }


        html {
            font-size: 16px;
/*            background: url(/img/bg.jpg) no-repeat center center fixed;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            background-size: cover;*/
        }
        .purchase-button {
           
            font-size: 1rem !important;
        }
        .HowToEarn,
        .HowToBuy {
            font-size: 1.7em;
        }

        #aboutustext {
            font-size: 1.5em !important;
        }

        .profile-avatar {
            width: 120px;
            height: 120px;
        }

        .card-body h3 {
            font-size: 2rem;
        }
    }

    @media (max-width: 767.98px) {
        .profile-banner {
            height: 150px;
        }

        .profile-avatar {
            width: 100px;
            height: 100px;
        }

        .card-body {
            padding: 1rem;
        }

            .card-body h3 {
                font-size: 1.5rem;
            }
    }

    @media (max-width: 991.98px) {
        #navbarSearchBtn {
            position: relative;
            right: 0;
        }

        .navbar .container {
            padding-right: 1rem;
            padding-left: 1rem;
        }
    }

    @media (min-width: 992px) {
        .navbar form.d-flex {
            margin-left: 2rem;
            margin-right: 2rem;
        }

        #navbarSearchInput {
            min-width: 250px;
        }

        a.navbar-brand {
            font-size: 2.5em;
        }
        .purchase-button {
            font-size: 1.5rem !important;
        }
    }

    /* Video Grid and Cards */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 1rem;
    }

    .video-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.2s ease-in-out;
    }

        .video-card:hover {
            transform: translateY(-5px);
        }

    .video-thumbnail {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .video-info {
        padding: 1rem;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: var(--text-light);
    }

    /* Form Elements */
    .accordion-collapse {
        visibility: visible !important;
        display: block !important;
        height: auto !important;
    }

        .accordion-collapse.collapse:not(.show) {
            display: none !important;
        }

    .accordion-button {
        position: relative !important;
        display: flex !important;
        width: 100% !important;
    }

        .accordion-button::after {
            display: block !important;
            visibility: visible !important;
        }

    .form-control {
        border: 1px solid var(--border-color);
        border-radius: 4px;
        padding: 0.5rem 0.75rem;
        transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(27, 110, 194, 0.25);
            outline: none;
        }

    .form-label {
        font-weight: 500;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        font-weight: 500;
        text-align: center;
        vertical-align: middle;
        user-select: none;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: 0.25rem;
        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;
    }

    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--text-light);
    }

        .btn-primary:hover {
            background-color: #155592;
            border-color: #124d82;
        }

    .btn-secondary {
        background-color: #6c757d;
        border-color: #6c757d;
        color: var(--text-light);
    }

    /* Progress Bars */
    .progress {
        height: 1rem;
        background-color: #e9ecef;
        border-radius: 0.25rem;
        overflow: hidden;
    }

    .progress-bar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: var(--text-light);
        text-align: center;
        background-color: var(--primary-color);
        transition: width 0.6s ease;
    }

    /* Modals */
    .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
    }

    .modal-content {
        background-color: white;
        border-radius: 8px;
        padding: 1rem;
        max-width: 500px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Status Badges */
    .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: 0.25rem;
    }

    .badge-success {
        background-color: var(--success);
        color: white;
    }

    .badge-warning {
        background-color: var(--warning);
        color: black;
    }

    .badge-danger {
        background-color: var(--danger);
        color: white;
    }

    /* Loading States */
    .loading-spinner {
        display: inline-block;
        width: 2rem;
        height: 2rem;
        border: 0.25em solid currentColor;
        border-right-color: transparent;
        border-radius: 50%;
        animation: spinner-border .75s linear infinite;
    }

    @keyframes spinner-border {
        to {
            transform: rotate(360deg);
        }
    }

    /* Tooltips */
    .tooltip {
        position: relative;
        display: inline-block;
    }

        .tooltip .tooltip-text {
            visibility: hidden;
            background-color: black;
            color: var(--text-light);
            text-align: center;
            padding: 5px;
            border-radius: 6px;
            position: absolute;
            z-index: 1070;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

    /* Additional Utility Classes */
    .text-truncate {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rounded-circle {
        border-radius: 50% !important;
    }

    .shadow-sm {
        box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    }

    .shadow {
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

    .shadow-lg {
        box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
    }

    .text-muted {
        color: #6c757d !important;
    }

    .text-primary {
        color: var(--primary-color) !important;
    }

    .text-success {
        color: var(--success) !important;
    }

    .text-danger {
        color: var(--danger) !important;
    }

    .bg-light {
        background-color: #f8f9fa !important;
    }

    .bg-dark {
        background-color: #343a40 !important;
    }

    .bg-primary {
        background-color: var(--primary-color) !important;
    }

    .d-none {
        /* display: none !important;*/
    }

    .d-block {
        display: block !important;
    }

    .d-flex {
        display: flex !important;
        flex-wrap: wrap !important;
    }

    .align-items-center {
        align-items: center !important;
    }

    .gap-2 {
        gap: 0.5rem;
    }

    .d-inline-flex {
        display: inline-flex !important;
    }

    .justify-content-between {
        justify-content: space-between !important;
    }

    .justify-content-center {
        justify-content: center !important;
    }

    .align-items-center {
        align-items: center !important;
    }

    .w-100 {
        width: 100% !important;
    }

    .h-100 {
        height: 100% !important;
    }

    .m-0 {
        margin: 0 !important;
    }

    .mt-1 {
        margin-top: 0.25rem !important;
    }

    .mt-2 {
        margin-top: 0.5rem !important;
    }

    .mt-3 {
        margin-top: 1rem !important;
    }

    .mt-4 {
        margin-top: 1.5rem !important;
    }

    .mt-5 {
        margin-top: 3rem !important;
    }

    .mb-1 {
        margin-bottom: 0.25rem !important;
    }

    .mb-2 {
        margin-bottom: 0.5rem !important;
    }

    .mb-3 {
        margin-bottom: 1rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .mb-5 {
        margin-bottom: 3rem !important;
    }

    /* Print Styles */
    @media print {
        .no-print {
            display: none !important;
        }

        body {
            background: none;
        }

        .container {
            width: 100%;
            margin: 0;
            padding: 0;
        }
    }

    /* Accessibility Enhancements */
    :focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
    }
 