:root {
    /* Dark Theme Colors */
    --bg-dark: #0a0e23;
    --bg-dark-secondary: #161b33;
    --text-dark: #333333;
    --text-dark-secondary: #a0a0a0;
    --accent-purple: #6c4df2;
    --accent-orange: #f9a825;
    --accent-gradient: linear-gradient(145deg, #6c4df2, #f9a825);
	--accent-white: linear-gradient(145deg, #ffffff, #f3efff, #6c4df2);
	--accent-white-solid: #f3efff;
    --card-bg-dark: rgba(30, 35, 70, 0.5);
    
    /* Light Theme Colors */
    --bg-light: #f8f9fa;
    --bg-light-secondary: #ffffff;
    --text-light: #333333;
    --text-light-secondary: #666666;
    --card-bg-light: rgba(255, 255, 255, 0.9);
    
    /* Common */
    --font-primary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Header Styles */
#header {
    background: var(--bg-dark-secondary);
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light-mode #header {
    background: var(--bg-light-secondary);
}

.logo img {
    max-height: 50px;
    transition: var(--transition);
}

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

.top-nav {
    margin: 0;
    padding: 0;
    float: right;
}

.top-nav li {
    display: inline-block;
    margin-left: 15px;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

body.light-mode .top-nav a {
    color: var(--text-light);
}

.top-nav a:hover {
    color: var(--accent-orange);
}

.top-nav .btn {
    background: var(--accent-purple);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.top-nav .btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Modern Domain Search */
#home-banner {
    background: var(--bg-dark-secondary);
    padding: 60px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

body.light-mode #home-banner {
    background: var(--bg-light-secondary);
    color: var(--text-light);
}

#home-banner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    background-size: cover;
    opacity: 0.1;
}

#home-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#frmDomainHomepage .form-control {
    height: 50px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    box-shadow: var(--box-shadow-light);
}

#frmDomainHomepage .input-group-btn .btn {
    height: 50px;
    min-width: 120px;
    font-weight: 600;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

#frmDomainHomepage .input-group-btn .btn.search {
    background: var(--accent-purple);
}

#frmDomainHomepage .input-group-btn .btn.transfer {
    background: var(--accent-orange);
}

#frmDomainHomepage .input-group-btn .btn:hover {
    transform: none;
    box-shadow: none;
    filter: brightness(110%);
}

/* About Us Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

body.light-mode .about {
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: var(--text-dark);
    position: relative;
}

body.light-mode .section-title {
    color: var(--text-light);
}

.section-title i {
    color: var(--accent-purple);
    margin-right: 15px;
}

.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light-secondary);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    margin: 10px;
    flex: 1;
    min-width: 200px;
    transition: var(--transition);
}

body.light-mode .stat-item {
    background: var(--bg-light-secondary);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

body.light-mode .stat-number {
    color: var(--text-light);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--accent-purple);
}

.stat-label i {
    margin-right: 8px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    padding-left: 35px;
    color: var(--text-dark);
}

body.light-mode .about-content p {
    color: var(--text-light);
}

.about-content i.fa-check {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--accent-orange);
    font-size: 1.3rem;
}

/* Animations */
.animate-stat {
    animation: fadeInUp 1s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background-color: var(--bg-dark-secondary);
    padding: 80px 0 0;
}

body.light-mode .footer {
    background-color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    padding: 0 15px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
}

body.light-mode .footer-about {
    color: var(--text-light-secondary);
}

/* Footer Social Icons - Clean Version */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding: 0;
    width: 100%;
}

.footer-social a {
    color: var(--text-dark-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.footer-social a:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* Light mode */
body.light-mode .footer-social a {
    color: var(--text-light-secondary);
}

body.light-mode .footer-social a:hover {
    color: var(--accent-orange);
}

.social-icon {
    color: var(--text-dark-secondary);
    font-size: 1.5rem;
    transition: var(--transition);
    display: inline-flex;
}

.social-icon:hover {
    color: var(--accent-purple);
    transform: translateY(-3px);
}

/* Light mode adjustment */
body.light-mode .social-icon {
    color: var(--text-light-secondary);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

body.light-mode .footer-col h3 {
    color: var(--text-light);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a, .footer-col li {
    color: var(--text-dark-secondary);
    transition: var(--transition);
    text-decoration: none;
}

body.light-mode .footer-col a,
body.light-mode .footer-col li {
    color: var(--text-light-secondary);
}

.footer-col a:hover {
    color: var(--accent-purple);
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--accent-purple);
}

.footer-bottom {
    border-top: 1px solid rgba(108, 77, 242, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

body.light-mode .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.copyright {
    color: var(--text-dark-secondary);
}

body.light-mode .copyright {
    color: var(--text-light-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-dark-secondary);
    text-decoration: none;
    transition: var(--transition);
}

body.light-mode .footer-links a {
    color: var(--text-light-secondary);
}

.footer-links a:hover {
    color: var(--accent-purple);
}

/* Base Typography Overrides */
body,
input,
button,
select,
textarea {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-dark);
    line-height: 1.6;
}

/* Navbar Link Hover/Active States */
.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > .active > a {
    background: var(--accent-gradient);
    background-size: 300% 300%;
    color: #fff !important;
    transition: all 0.3s ease-in-out;
    animation: gradientShift2 6s infinite linear;
}

/* Keyframes for smooth gradient animation */
@keyframes gradientShift2 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Main Navbar and Primary Buttons */
.navbar-main,
ul.top-nav > li.primary-action > a.btn,
.btn-primary {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--accent-purple), #434cc5, var(--bg-dark-secondary));
    background-size: 300% 300% !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease-in-out !important;
    animation: gradientShift 6s infinite linear;
}

/* Top Navigation Links */
ul.top-nav > li > a {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--accent-purple), #434cc5, var(--bg-dark-secondary));
    background-size: 300% 300% !important;
    color: white !important;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease-in-out;
    animation: gradientShift 6s infinite linear;
}

/* Force hover color change for top navbar */
ul.top-nav > li > a {
    color: white !important;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out !important;
}

/* Change color on hover */
ul.top-nav > li > a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--accent-orange) !important;
}

/* Fix dropdown hover */
ul.top-nav > li.dropdown:hover > a {
    background: var(--bg-dark) !important;
    color: white !important;
}

/* Ensure dropdown menu is visible */
ul.top-nav > li.dropdown:hover > ul.dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Change background on hover */
ul.top-nav > li > a:hover {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--accent-purple), #434cc5, var(--bg-dark-secondary)) !important;
    color: var(--accent-orange) !important;
}

/* Hover effect for user menu */
ul.top-nav > li:last-child > a:hover {
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--accent-purple), #434cc5, var(--bg-dark-secondary)) !important;
    color: var(--accent-orange) !important;
}

/* Progress Bars */
.progress {
    background: var(--bg-dark-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
    line-height: 20px;
}

.progress-bar-info {
    background-color: var(--accent-purple);
}

.progress-bar-warning {
    background-color: var(--accent-orange);
}

/* Buttons */
.btn-primary, .btn-success, .btn-danger, .btn-info {
    border-radius: var(--border-radius) !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    border: none !important;
}

.btn-primary { 
    background: linear-gradient(135deg, var(--accent-purple), #5a3fd8) !important;
}
.btn-success { 
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
}
.btn-danger { 
    background: linear-gradient(135deg, #dc3545, #a71d2a) !important;
}
.btn-info { 
    background: linear-gradient(135deg, #17a2b8, #117a8b) !important;
}

.btn-primary:hover, 
.btn-success:hover, 
.btn-danger:hover, 
.btn-info:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--box-shadow-light) !important;
}

/* Cards */
.card {
    border: 1px solid rgba(108, 77, 242, 0.1) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow-light) !important;
    margin-bottom: 20px !important;
    background: var(--card-bg-dark) !important;
}

body.light-mode .card {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: var(--card-bg-light) !important;
}

/* Dashboard Panels */
.dashboard-panel {
    border-radius: var(--border-radius) !important;
    box-shadow: var(--box-shadow) !important;
    transition: var(--transition) !important;
    background: var(--card-bg-dark) !important;
    border: 1px solid rgba(108, 77, 242, 0.1) !important;
}

body.light-mode .dashboard-panel {
    background: var(--card-bg-light) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dashboard-panel:hover {
    transform: scale(1.02) !important;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.usage-stats, #diskUsage, #bandwidthUsage {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Additional improvements for dark/light mode */
body.light-mode .progress {
    background: #e0e0e0;
}

body.light-mode ul.top-nav > li > a,
body.light-mode ul.top-nav > li.dropdown:hover > a {
    color: var(--text-light) !important;
}

body.light-mode ul.top-nav > li > a:hover {
    color: var(--accent-orange) !important;
}

/* Custom WHMCS Loading Spinner */
.whmcs-loading {
    border: 3px solid rgba(108, 77, 242, 0.2);
    border-top: 3px solid var(--accent-purple);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 5px;
}

body.light-mode ::-webkit-scrollbar-track {
    background: #e0e0e0;
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: var(--accent-orange);
}
/* WHMCS Sidebar Fixes */
#sidebar {
    background: var(--bg-dark-secondary) !important;
    width: 250px !important;
    transition: var(--transition) !important;
}

body.light-mode #sidebar {
    background: var(--bg-light-secondary) !important;
}

#sidebar .primary-sidebar {
    padding: 15px !important;
}

#sidebar .menu-item {
    margin-bottom: 15px !important;
    border-radius: var(--border-radius) !important;
    overflow: hidden !important;
    background: var(--card-bg-dark) !important;
    box-shadow: var(--box-shadow-light) !important;
}

body.light-mode #sidebar .menu-item {
    background: var(--card-bg-light) !important;
}

#sidebar .menu-item-header {
    background: rgba(108, 77, 242, 0.2) !important;
    padding: 12px 15px !important;
    font-weight: 600 !important;
}

body.light-mode #sidebar .menu-item-header {
    background: rgba(249, 168, 37, 0.1) !important;
}

#sidebar .menu-item-icon {
    color: var(--accent-purple) !important;
}

body.light-mode #sidebar .menu-item-icon {
    color: var(--accent-orange) !important;
}

#sidebar .menu-item-link {
    padding: 10px 15px !important;
    transition: var(--transition) !important;
}

#sidebar .menu-item-link:hover {
    background: rgba(108, 77, 242, 0.1) !important;
    color: var(--accent-purple) !important;
}

body.light-mode #sidebar .menu-item-link:hover {
    background: rgba(249, 168, 37, 0.1) !important;
    color: var(--accent-orange) !important;
}

/* Specific styles for your balance panel */
#sidebar .menu-item-Client-Balance {
    background: rgba(108, 77, 242, 0.15) !important;
    border: 1px solid var(--accent-purple) !important;
}

body.light-mode #sidebar .menu-item-Client-Balance {
    background: rgba(249, 168, 37, 0.1) !important;
    border: 1px solid var(--accent-orange) !important;
}

#sidebar .menu-item-Client-Balance .menu-item-link {
    text-align: center !important;
}

#sidebar .menu-item-Client-Balance h4 {
    margin: 0 !important;
    color: var(--accent-purple) !important;
    font-weight: 700 !important;
}

body.light-mode #sidebar .menu-item-Client-Balance h4 {
    color: var(--accent-orange) !important;
}
/* ===================== */
/* BREADCRUMB STYLING */
/* ===================== */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    list-style: none;
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

body.light-mode .breadcrumb {
    background: var(--card-bg-light);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1.5rem;
}

/* Separator - Modern chevron */
.breadcrumb li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -1rem;
    color: var(--text-dark-secondary);
    font-size: 1.1rem;
    font-weight: bold;
}

body.light-mode .breadcrumb li:not(:last-child)::after {
    color: var(--text-light-secondary);
}

/* ===================== */
/* BREADCRUMB STYLING */
/* ===================== */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    list-style: none;
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

body.light-mode .breadcrumb {
    background: var(--card-bg-light);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1.5rem;
}

/* Separator - Modern chevron */
.breadcrumb li:not(:last-child)::after {
    content: "›";
    position: absolute;
    right: -1rem;
    color: var(--text-dark-secondary);
    font-size: 1.1rem;
    font-weight: bold;
}

body.light-mode .breadcrumb li:not(:last-child)::after {
    color: var(--text-light-secondary);
}

/* Link styling */
.breadcrumb a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

body.light-mode .breadcrumb a {
    color: var(--accent-orange);
}

.breadcrumb a:hover {
    color: var(--accent-white-solid);
    text-decoration: underline;
    transform: translateX(2px);
}

body.light-mode .breadcrumb a:hover {
    color: var(--accent-purple);
}

/* ===================== */
/* ENHANCED BREADCRUMB STYLING */
/* ===================== */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    margin-bottom: 2rem;
    list-style: none;
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

body.light-mode .breadcrumb {
    background: var(--card-bg-light);
    border-left-color: var(--accent-orange);
}

/* Decorative accent */
.breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 1.75rem;
    padding: 0.25rem 0;
    z-index: 1;
}

/* Modern arrow separator with animation */
.breadcrumb li:not(:last-child)::after {
    content: "➔";
    position: absolute;
    right: -1.25rem;
    color: var(--accent-purple);
    font-size: 1rem;
    font-weight: normal;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

body.light-mode .breadcrumb li:not(:last-child)::after {
    color: var(--accent-orange);
}

.breadcrumb li:hover:not(:last-child)::after {
    transform: translateX(3px);
}

/* Link styling with gradient text */
.breadcrumb a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    position: relative;
}

body.light-mode .breadcrumb a {
    color: var(--accent-orange);
}

.breadcrumb a:hover {
    color: var(--accent-white-solid);
    text-decoration: none;
    transform: translateX(2px);
}

body.light-mode .breadcrumb a:hover {
    color: var(--accent-purple);
}

/* Animated underline effect */
.breadcrumb a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.breadcrumb a:hover::after {
    width: 100%;
}

/* Current page item with badge style */
.breadcrumb .active {
    color: var(--accent-white-solid); /* Or any other defined variable */
    font-weight: 600;
    background: var(--accent-gradient);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-left: 0.5rem;
    animation: pulse-glow 2s infinite;
}

body.light-mode .breadcrumb .active {
    color: white;
    box-shadow: 0 2px 8px rgba(249, 168, 37, 0.3);
}

/* Modern icons using Font Awesome 6 Free (Solid) */
.breadcrumb a[href*="clientarea.php"]::before {
    content: "\f007"; /* fa-user */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

.breadcrumb a[href*="cart.php"]::before {
    content: "\f07a"; /* fa-cart-shopping */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

.breadcrumb a[href*="supporttickets.php"]::before {
    content: "\f4ad"; /* fa-paper-plane */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

.breadcrumb a[href*="knowledgebase"]::before {
    content: "\f5da"; /* fa-book-open */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

/* Pulse animation for current item */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(108, 77, 242, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(108, 77, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(108, 77, 242, 0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .breadcrumb li {
        margin-right: 1.25rem;
    }

    .breadcrumb li:not(:last-child)::after {
        right: -1rem;
        font-size: 0.9rem;
    }

    .breadcrumb .active {
        padding: 0.2rem 0.6rem;
    }
}
