﻿:root {
    --primary: #000066;
    --secondary: #FF00FF;
    --bg-dark: #251C3D;
    --text-light: #FFFFFF;
    --glow: 0 0 10px rgba(255, 0, 255, 0.7);
}
body {
    color: var(--text-light) !important;
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
    /* Combined background declaration */
    background: linear-gradient(-45deg, #0f0c29, #251C3D, #2D1F4A, #3A2960) var(--bg-dark);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    /* Grid Overlay - Safari fixed version */

    }

    /* Circuit Lines Animation - Safari fixed version */
    &::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            linear-gradient(90deg, transparent 20%, rgba(255, 0, 255, 0.1) 50%, transparent 80%),
            linear-gradient(transparent 20%, rgba(0, 0, 102, 0.1) 50%, transparent 80%);
        background-size: 300% 300%;
        animation: circuitLines 20s linear infinite;
        z-index: -1;
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        -webkit-transform: translateZ(0);
    }
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes circuitLines {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

p {
    color: var(--text-light)
}

/* Header Styles */
header {
    background: rgba(37, 28, 61, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: var(--glow);
    z-index: 1000;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 0, 102, 0.3);
}

/* Sidebar Styles */
aside {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 0, 255, 0.2);
    box-shadow: var(--glow);
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    position: fixed;
    overflow-y: auto;
    transition: all 0.3s ease;
    z-index: 999;
    /* Increased from 250px */
}

.sidebar-nav {
    padding-top: 3.5rem;
    /* Increased from default */
    padding-bottom: 1.5rem;
    /* Added bottom padding */
}

.sidebar-nav .nav-link {
    color: var(--text-light);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    font-weight: 600;
    width: 280px;
    display: flex;
    font-size: 1.1rem;
    /* Increased from ~0.9rem */
    padding: 0.75rem 1.5rem;
    /* Increased vertical padding */
    margin-bottom: 0.5rem;
    /* Space between items */
    position: relative;

}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: var(--secondary);
    border-left: 3px solid var(--secondary);
    background: rgba(5, 0, 31, 0.619);
    padding-left: 1.25rem;
    /* Animated padding change */
    border-left-width: 5px;
    /* Thicker accent border */
}

.sidebar-nav .nav-link i {
    text-align: center;
    font-size: 1.2rem;
    /* Increased icon size */
    width: 1.5rem;
    /* Increased icon container */
    margin-right: 12px;
    /* More space after icon */
}

.sub-menu {
    background: rgba(0, 0, 102, 0.2);
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin-left: 10px;
    display: none;
}

.sub-menu.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.wrapper {
    margin-left: 280px;
    transition: all 0.3s ease;
}

.content {
    padding: 20px;
    min-height: calc(100vh - 120px);
}

/* Card Styles */
.card {
    background: rgba(37, 28, 61, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), var(--glow);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--secondary);
}

.card-header {
    background: rgba(0, 0, 102, 0.3);
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.card-body {
    color: var(--text-light) !important;
}

/* Animated Gradient Text for Card Headers */
.card h3 {

    color: #FF00FF;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Add this to your existing card styling */
.card:hover h3 {
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    animation-duration: 5s;
    /* Faster animation on hover */
}

/* Progress Bars */
.progress {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--secondary);
}

/* Button Styles */
.btn-primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 102, 0.5);
}

.btn-secondary {
    background: var(--secondary);
    border: none;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--text-light);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.btn-outline-secondary {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    box-shadow: 0 0 15px var(--secondary);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-glow:hover:before {
    left: 100%;
}

/* Table Styles */
/* Table Styles with Animations */
.table {
    background: linear-gradient(135deg, rgba(37, 28, 61, 0.8), rgba(25, 15, 50, 0.9));
    color: white !important;
    /* White text for all table content */
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 102, 0.5);
    position: relative;
}

/* Shining Lines Animation */
.table tr {
    position: relative;
    
}

.table tr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 0, 255, 0.7),
            transparent);
    animation: shineLine 3s infinite;
    opacity: 0.7;
}

@keyframes shineLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Table Header Styles */
.table th {
    background: linear-gradient(to right, #000066, #1a0d4d);
    color: #FF00FF !important;
    /* Pink text for headers */
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Header Shine Effect */
.table th::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: none;
    animation: headerShine 5s infinite;
}

@keyframes headerShine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Table Cell Styles */
.table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 0, 255, 0.1);
    vertical-align: middle;
    position: relative;
}

/* Hover Effects */
.table-hover tbody tr:hover {
    background: rgba(255, 0, 255, 0.05) !important;
}

.table-hover tbody tr:hover td {
    color: #FF00FF !important;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.3);
}

/* Zebra Striping with Theme Colors */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 102, 0.1);
}

/* Special Cell Highlighting */
.table td.highlight {
    color: #FF00FF !important;
    font-weight: bold;
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px #FF00FF;
    }

    100% {
        opacity: 0.8;
    }
}

/* Responsive Table Container */
.table-responsive {
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 255, 0.2);
}

/* Form Styles */
.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 255, 0.3);
    color: var(--text-light);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    color: var(--text-light);
}

/* Footer Styles */
footer {
    background: rgba(37, 28, 61, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    padding: 15px 0;
    width:100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    aside {
        width: 80px;
        overflow: hidden;
    }

    aside:hover {
        width: 280px;
        z-index: 1001;
    }

    .wrapper {
        margin-left: 90px;
    }

    .nav-link span {
        /*display: none;*/
    }

    aside:hover .nav-link span {
        display: inline;
    }
}

@media (max-width: 768px) {
    aside {
        width: 280px;
        position: fixed;
        left: -280px;
    }

    aside.show {
        left: 0;
    }

    .wrapper {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: block !important;
    }
}

/* Custom Shapes */
.hexagon {
    width: 100px;
    height: 57.74px;
    background: var(--primary);
    position: relative;
    margin: 28.87px 0;
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 28.87px solid var(--primary);
}

.hexagon:after {
    top: 100%;
    border-top: 28.87px solid var(--primary);
}

/* Animations */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
    }
}

.glow-text {
    text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--secondary), 0 0 10px var(--secondary);
    }

    to {
        text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary), 0 0 30px var(--primary);
    }
}

/* Floating Tech Elements */
.floating-tech {
    position: fixed;
    opacity: 0.1;
    z-index: -1;

    &.hexagon {
        width: 100px;
        height: 57.74px;
        background: rgba(255, 0, 255, 0.1);
        position: fixed;

        &::before,
        &::after {
            content: "";
            position: absolute;
            width: 0;
            border-left: 50px solid transparent;
            border-right: 50px solid transparent;
        }

        &::before {
            bottom: 100%;
            border-bottom: 28.87px solid rgba(255, 0, 255, 0.1);
        }

        &::after {
            top: 100%;
            border-top: 28.87px solid rgba(255, 0, 255, 0.1);
        }

        animation: float 25s linear infinite;
    }

    &.circle {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        border: 2px dashed rgba(0, 0, 102, 0.3);
        animation: spin 40s linear infinite;
    }

    &.triangle {
        width: 0;
        height: 0;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
        border-bottom: 100px solid rgba(0, 0, 102, 0.1);
        animation: float 30s linear infinite reverse;
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50vw, 25vh) rotate(90deg);
    }

    50% {
        transform: translate(75vw, 50vh) rotate(180deg);
    }

    75% {
        transform: translate(25vw, 75vh) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg) translateX(20vw) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(20vw) rotate(-360deg);
    }
}

/* Binary Rain Effect */
.binary-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.15;

    span {
        position: absolute;
        color: rgba(255, 0, 255, 0.7);
        font-family: 'Courier New', monospace;
        font-weight: bold;
        font-size: 16px;
        animation: binaryFall linear infinite;
    }
}

@keyframes binaryFall {
    to {
        transform: translateY(100vh);
    }
}

.bitrox-3d-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    perspective: 1000px;
    overflow: hidden;
}

.bitrox-3d-logo {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(20deg);
    transform-style: preserve-3d;
    animation: logoFloat 15s infinite ease-in-out;
}

.logo-face {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    border: 2px solid rgba(255, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.logo-face.front {
    transform: translateZ(150px);
    background-size: contain !important;
}

.logo-face.back {
    transform: rotateY(180deg) translateZ(150px);
    background-size: contain !important;
}

.logo-face.right {
    transform: rotateY(90deg) translateZ(150px);
}

.logo-face.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.logo-face.top {
    transform: rotateX(90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(0, 0, 102, 0.3), rgba(255, 0, 255, 0.3));
}

.logo-face.bottom {
    transform: rotateX(-90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.3), rgba(0, 0, 102, 0.3));
}


.particle-particle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-particle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 70%;
    animation-delay: -3s;
}

.particle-particle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 80%;
    animation-delay: -5s;
}

/* Animations */
@keyframes logoFloat {

    0%,
    100% {
        transform: translate(-50%, -50%) rotateX(20deg) rotateY(20deg);
    }

    25% {
        transform: translate(-50%, -50%) rotateX(40deg) rotateY(-20deg);
    }

    50% {
        transform: translate(-50%, -50%) rotateX(-20deg) rotateY(40deg);
    }

    75% {
        transform: translate(-50%, -50%) rotateX(-40deg) rotateY(-40deg);
    }
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(50px, 50px);
    }

    50% {
        transform: translate(100px, 0);
    }

    75% {
        transform: translate(50px, -50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Text Overlay */
.welcome-text-overlay {
    position: relative;
    z-index: 1;
    background: rgba(37, 28, 61, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 102, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .bitrox-3d-logo {
        width: 200px;
        height: 200px;
    }

    .logo-face.front,
    .logo-face.back,
    .logo-face.right,
    .logo-face.left {
        transform: translateZ(100px);
    }
}


.login-card {
    background: rgba(37, 28, 61, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 102, 0.5), 0 0 15px rgba(255, 0, 255, 0.3);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    padding: 1.5rem;
    text-align: center;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.wallet-status {
    border-radius: 10px;
    padding: 12px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

.connected {
    background: rgba(0, 200, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.5);
    color: #00ff88;
}

.not-connected {
    background: rgba(200, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff3860;
}

.btn-login {
    background: var(--primary);
    border: none;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 0, 102, 0.7);
    transition: all 0.3s ease;
}

    .btn-login:hover {
        background: #000044;
        box-shadow: 0 0 25px rgba(0, 0, 102, 0.9);
        transform: translateY(-2px);
    }

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

.signup-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .signup-link:hover {
        color: white;
        text-shadow: 0 0 10px var(--secondary);
    }

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 255, 0);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* ======================
   BREADCRUMB NAVIGATION 
   ====================== */
.page-title {
    background: rgba(37, 28, 61, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 0 0 8px 8px; /* Top corners 0, bottom corners 8px */
    padding: 1.5rem 1rem; /* Increased top/bottom padding (1.5rem) */
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-top: none; /* Remove top border for cleaner look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), var(--glow);
    min-height: 70px; /* Increased minimum height */
    align-items: center; /* Vertically center content */
    width: 100% !important;
}

    /* Keep all other existing styles exactly the same */
    .page-title h4 {
        font-family: 'Orbitron', sans-serif;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-light);
        margin-bottom: 0;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 0 10px rgba(0, 0, 102, 0.3);
     
    }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    border-radius: 0;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.breadcrumb-item {
    position: relative;
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

    .breadcrumb-item::after {
        content: '>';
        position: absolute;
        right: -1rem;
        color: var(--secondary);
        text-shadow: 0 0 5px var(--secondary);
    }

    .breadcrumb-item:last-child::after {
        display: none;
    }

    .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }

        .breadcrumb-item a:hover {
            color: var(--secondary);
            text-shadow: 0 0 8px var(--secondary);
        }

    .breadcrumb-item.active {
        color: var(--text-light);
        animation: breadcrumbGlow 2s infinite alternate;
    }

    /* Animated underline effect */
    .breadcrumb-item a {
        position: relative;
        overflow: hidden;
    }

        .breadcrumb-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--secondary);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }

        .breadcrumb-item a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

@keyframes breadcrumbGlow {
    from {
        text-shadow: 0 0 5px var(--secondary);
    }

    to {
        text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--primary);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-title {
        padding: 0.75rem;
    }

        .page-title h4 {
            font-size: 1rem;
        }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .breadcrumb-item {
        margin-right: 1rem;
    }

    .page-title-box {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .page-title-right {
        margin-top: 0.5rem;
    }
}