﻿/* ================= GLOBAL RESET ================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}
.custom-navbar {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

/* Brand */
.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

/* Links */
.nav-link {
    color: #cbd5f5 !important;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

    .nav-link:hover {
        color: #fff !important;
    }


.navbar-brand img {
    height: 50px;   
    width: auto;
}
.foot-logo {
     height: 50px;   
    width: auto;
}
/* Button */
.talk-btn {
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 10px;
    border: none;
}

/* Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 15px;
    }

    .talk-btn {
        width: 100%;
        justify-content: center;
    }
}

.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

/* Image */
.banner-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    object-position: top;
}

/* Desktop Text (overlay) */
.banner-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

    /* Text */
    .banner-content h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .banner-content p {
        font-size: 18px;
        color: #ddd;
    }

@media (max-width: 768px) {

    .banner-section {
        height: 300px; /* fixed mobile height */
    }

    .banner-img {
        height: 100%;
    }

    /* 🔥 overlay add */
    .banner-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6); /* balance dark */
        z-index: 1;
    }

    .banner-content {
        position: absolute; /* 🔥 overlay back */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: center;
        z-index: 2;
        padding: 10px;
    }

        .banner-content h1 {
            font-size: 20px;
            line-height: 1.3;
        }

        .banner-content p {
            font-size: 13px;
        }

    .btn {
        font-size: 12px;
        padding: 8px 14px;
    }
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: white;
    padding: 10px 0;
}

.ticker {
    display: inline-flex;
    gap: 40px;
    white-space: nowrap;
    animation: scrollTicker 20s linear infinite;
}

    .ticker span {
        color: black;
        font-size: 16px;
        font-weight: 500;
    }

        /* Up / Down color */
        .ticker span:contains("↑") {
            color: #22c55e; /* green */
        }

        .ticker span:contains("↓") {
            color: #ef4444; /* red */
        }

/* Animation */
@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.about-section {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.about-img {
    max-height: 420px;
    object-fit: contain;
    border-bottom-right-radius: 200px;
}

/* Text */
.tag-line {
    display: inline-block;
    background: #1e293b;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
}

.about-desc {
    font-size: 18px;
    color: #cbd5f5;
}

/* Tablet */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 20px;
    }

    .about-title {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .banner-title {
        font-size: 26px;
    }

    .banner-desc {
        font-size: 16px;
    }
}

.vision-mission {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #cbd5f5;
    margin-top: 10px;
}

/* Card */
.vm-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}

    .vm-card:hover {
        transform: translateY(-8px);
    }

/* Icon */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

.counter-section {
    padding: 70px 0;
    background: #020617;
    color: #fff;
}

/* Wrapper */
.counter-wrapper {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

/* Each Item */
.counter-item {
    flex: 1;
    padding: 20px;
    position: relative;
}

    /* Divider Line */
    .counter-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        width: 1px;
        height: 60%;
        background: rgba(255,255,255,0.2);
    }

/* Number */
.counter {
    font-size: 42px;
    font-weight: 700;
    color: #3b82f6;
}

/* Text */
.counter-item p {
    margin-top: 10px;
    color: #cbd5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .counter-wrapper {
        flex-direction: column;
    }

    .counter-item:not(:last-child)::after {
        display: none;
    }

    .counter-item {
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
}

.services-section {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #cbd5f5;
    margin-top: 10px;
}

/* Image */
.service-img {
    max-height: 250px;
    object-fit: contain;
    border-radius: 20px;
}

/* Service spacing */
.service-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-item p {
    color: #cbd5f5;
    font-size: 17px;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .service-item {
        text-align: center;
    }
}

.why-section {
    padding: 80px 0;
    background: #020617;
    color: #fff;
}

.why-box {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

    .why-box:hover {
        transform: translateY(-8px);
    }

    .why-box i {
        font-size: 40px;
        color: #3b82f6;
        margin-bottom: 15px;
    }

    .why-box h4 {
        margin-bottom: 10px;
    }

    .why-box p {
        color: #cbd5f5;
    }

/* Mobile */
@media (max-width: 768px) {
    .why-box {
        text-align: center;
    }
}

.contact-section {
    padding: 80px 0;
    background: #0f172a;
    color: #fff;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background: #020617;
    color: #fff;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border: 1px solid #3b82f6;
    }

/* Mobile */
@media (max-width: 768px) {
    .contact-section {
        text-align: center;
    }
}

.footer-section {
    background: #020617;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo {
    font-weight: 700;
    font-size: 22px;
}

.footer-section p {
    color: #cbd5f5;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #cbd5f5;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: #3b82f6;
        }

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
}

.image-section {
    padding: 70px 0;
    background: #020617;
}

/* Image box */
.img-box {
    width: 100%;
    height: 180px; /* same height */
    object-fit: cover; /* crop nicely */
    border-radius: 12px;
    transition: 0.4s ease;
}

    /* Hover effect */
    .img-box:hover {
        transform: scale(1.05);
    }

/* Optional: add soft shadow */
.img-box {
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.download-btn {
    background: #3b82f6;
    color: #fff;
    margin: auto;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 14px;
    transition: 0.3s;
    width: 30%;
}

    .download-btn:hover {
        background: #2563eb;
        color: #fff;
    }

.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Image */
.custom-banner .banner-img {
    width: 100%;
    height: 400px;
    display: block;
}

/* Overlay */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* Center Content */
.custom-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
}

/* Text */
.banner-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.banner-content p {
    font-size: 18px;
    color: #ddd;
}

/* Mobile */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 26px;
    }

    .banner-content p {
        font-size: 15px;
    }
}

.contact-page {
    padding: 80px 0;
    background: #020617;
    color: #fff;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
}

.section-subtitle {
    color: #cbd5f5;
    margin-top: 10px;
}

/* Left info */
.contact-info {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
}

    .contact-info h4 {
        margin-bottom: 15px;
    }

    .contact-info p {
        color: #cbd5f5;
        margin-bottom: 10px;
    }

/* Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #0f172a;
    color: #fff;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border: 1px solid #3b82f6;
    }

/* Button */
.contact-form button {
    padding: 10px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page {
        text-align: center;
    }
}





/* ================= TOPBAR ================= */
.topbar {
    height: 50px;
    background: #fff;
    color: #333;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000; /* 🔥 important */
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.menu-toggle {
    font-size: 22px;
    cursor: pointer;
}

/* ================= SIDEBAR ================= */
.sidebar {
    width: 240px;
    background: #1f2235;
    position: fixed;
    top: 50px;
    left: 0;
    height: calc(100% - 50px);
    padding: 10px;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 2000;
}

/* Sidebar links */
.sidebar a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    color: #cfd3ff;
    text-decoration: none;
    border-radius: 6px;
}

.sidebar a:hover,
.sidebar a.active {
    background: #0d6efd;
    color: #fff;
}

/* ================= SUBMENU ================= */
.sidebar-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.submenu {
    display: none;
    flex-direction: column;
    padding-left: 40px;
}

.sidebar-item.open .submenu {
    display: flex;
}

.submenu a {
    font-size: 14px;
    padding: 6px 0;
    color: #bfc4ff;
}

/* Arrow */
.arrow {
    margin-left: auto;
    transition: 0.3s;
}

.sidebar-item.open .arrow {
    transform: rotate(90deg);
}

/* Arrow click area */
.submenu-toggle {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    z-index: 10;
}

/* ================= CONTENT ================= */
.content-area {
    margin-top: 50px;
    margin-left: 240px;
    width: calc(100% - 240px);
    padding: 15px;
    transition: 0.3s;
}

/* ================= COLLAPSE (DESKTOP) ================= */
.sidebar.collapsed {
    width: 60px;
}

.sidebar.collapsed a span {
    display: none;
}

.sidebar.collapsed .arrow {
    display: none;
}

.sidebar.collapsed .submenu {
    display: none !important;
}

.content-area.collapsed {
    margin-left: 60px;
    width: calc(100% - 60px);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

    /* Sidebar hidden */
    .sidebar {
        transform: translateX(-100%);
        width: 240px;
        top: 50px;
        height: calc(100% - 50px);
    }

    /* Show sidebar */
    .sidebar.show {
        transform: translateX(0);
    }

    /* Content full width */
    .content-area {
        margin-left: 0;
        width: 100%;
    }

    .content-area.collapsed {
        margin-left: 0;
        width: 100%;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 768px) {
    .topbar {
        height: 50px;
    }

    .sidebar {
        width: 220px;
    }
}

/* ================= EXTRA ================= */

/* Cards */
.card {
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Notification badge */
.notify-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: red;
    color: #fff;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Fix click issue */
.sidebar a {
    position: relative;
    z-index: 5;
}

.sidebar {
    touch-action: manipulation;
}


/* ================= CARDS & UI ================= */
.card {
    border-radius: 10px;
    margin-bottom: 10px;
}

.chart-placeholder {
    height: 200px;
    background: #f5f5f5;
    border-radius: 6px;
}

.side-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    margin-bottom: 10px;
}

/* ================= TABLE SCROLL ================= */
.table-scroll {
    max-height: 250px;
    overflow-y: auto;
}

    .table-scroll thead th {
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1;
    }

/* ================= SMALL UI ================= */
.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #22a7f0;
}

/* Dashboard content */
.dashboard-content {
    padding: 20px;
    background: linear-gradient(90deg, #8eea8c, #7cd67a);
    min-height: 100vh;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    color: #fff;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
}

.blue {
    background: #2563eb;
}

.green {
    background: #22c55e;
}

/* Info bar */
.info-bar {
    background: linear-gradient(90deg, #ff512f, #f09819);
    padding: 15px;
    color: #fff;
    margin: 20px 0;
    border-radius: 10px;
    text-align: right;
}

/* Cards */
.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 300px;
}

/* Countdown */
.countdown {
    background: #ff5722;
    color: #fff;
    text-align: center;
}

.info-bar {
    width: 100%;
    overflow: hidden;
    background: #ffcc00;
    color: #000;
    padding: 8px 0;
    white-space: nowrap;
    position: relative;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 12s linear infinite;
}

/* Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* Countdown Card */
.countdown {
    background: linear-gradient(135deg, #ff512f, #ff7b2f);
    color: #fff;
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
    transition: 0.3s;
}

    .countdown:hover {
        transform: translateY(-5px);
    }

    /* Title */
    .countdown h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

/* Timer Box */
.timer-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.countdown {
    height: auto;
    padding: 20px;
}
    /* Small floating alert icon (optional like your UI) */
    .countdown::after {
        content: "!";
        position: absolute;
        top: -10px;
        right: -10px;
        background: #fff;
        color: #ff512f;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }
/* Profile Card */
.profile {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    padding-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Cover */
.profile-cover {
    height: 100px;
    background: url('https://picsum.photos/400/200') center/cover;
}

/* Image */
.profile-img {
    margin-top: -40px;
}

    .profile-img img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 4px solid #fff;
    }

/* Name */
.profile h4 {
    margin: 10px 0;
    font-weight: 600;
}

/* Status box */
.status-box {
    background: #2e7d32;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
    font-size: 14px;
}

/* Buttons */
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

    .profile-actions .btn {
        border: none;
        color: #fff;
        padding: 10px;
        border-radius: 10px;
        text-align: left;
        font-weight: 500;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

/* Button colors */
.btn-ref {
    background: #6c63ff;
}

.btn-inr {
    background: linear-gradient(90deg, #00c9a7, #92fe9d);
}

.btn-usdt {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
}

.btn-meet {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.btn-problem {
    background: linear-gradient(90deg, #f7971e, #ffd200);
}

/* Stats */
.profile-stats {
    display: flex;
    gap: 10px;
    padding: 10px;
}

.stat {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    color: #fff;
}

    .stat.orange {
        background: #ff6a00;
    }

    .stat.purple {
        background: #6a11cb;
    }

    .stat h5 {
        margin: 0;
        font-size: 18px;
    }
/* Claim Button */
.claim-btn {
    background: linear-gradient(90deg, #ff512f, #ff9800);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content:center;
    gap: 8px;
    /* Animation */
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(255, 81, 47, 0.7);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 81, 47, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 15px rgba(255, 81, 47, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 81, 47, 0);
    }
}

/* Shine Effect */
.claim-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: skewX(-25deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}
/* ===== Card Design ===== */
.card-custom {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    width: 100%;
}

/* Header (Blue bar) */
.card-header {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 20px;
}

/* Form labels */
.card-body label {
    font-weight: 500;
    margin-bottom: 5px;
}

/* Inputs */
.form-control {
    border-radius: 8px;
    height: 45px;
    font-size: 14px;
}

textarea.form-control {
    height: auto;
    resize: none;
}

/* Button */
.btn-success {
    background: #22c55e;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-success:hover {
        background: #16a34a;
    }

/* Table */
.table {
    font-size: 14px;
    white-space: nowrap;
}

    .table thead {
        background: #e0f2fe;
        font-weight: 600;
    }

    .table th, .table td {
        vertical-align: middle;
        padding: 10px;
    }

/* ===== Responsive Fixes ===== */

/* Tablet */
@media (max-width: 992px) {
    .card-header {
        font-size: 16px;
    }

    .form-control {
        height: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Reduce padding */
    .card-body {
        padding: 15px;
    }

    /* Stack inputs nicely */
    .row.g-3 > div {
        width: 100%;
    }

    /* Button full width */
    .btn-success {
        width: 100%;
    }

    /* Table scroll */
    .table-responsive {
        overflow-x: auto;
    }

    .table {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .card-header {
        font-size: 14px;
        text-align: center;
    }

    .form-control {
        font-size: 13px;
    }

    .btn-success {
        font-size: 14px;
        padding: 10px;
    }
}
/* Profile Card */
.profile-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .profile-card img {
        width: 80px;
        border-radius: 50%;
    }


/* Card spacing like dashboard */
.card {
    border-radius: 10px;
    overflow: hidden;
}

/* Header blue */
.bg-primary {
    background: #2d6cdf !important;
}

/* Table header color (light yellow) */
.table-warning {
    background-color: #e9d9b0 !important;
}

/* Row spacing look */
.table td, .table th {
    padding: 14px;
    font-size: 14px;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .table td, .table th {
        font-size: 12px;
        padding: 10px;
    }
}

/* Card */
.card-custom {
    background: #fff;
    border-radius: 10px;
  
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* GREEN HEADER */
.card-title-green {
    background: #32cd32;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 5px;
}

/* Table container */
.table-box {
    margin-top: 15px;
}

/* Table */
.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

/* Header (Blue) */
.custom-table thead th {
    background: #1976d2;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    border-right: 1px solid #ffffff40;
}

/* Table body */
.custom-table tbody td {
    padding: 12px;
    background: #f8fafc;
    font-size: 14px;
}

/* No data row */
.custom-table tbody tr td[colspan] {
    text-align: center;
    font-weight: 500;
}

/* Scrollbar styling (optional like your UI) */
.table-responsive {
    overflow-x: auto;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .card-title-green {
        font-size: 18px;
    }

    .custom-table thead th {
        font-size: 13px;
        padding: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .content-area {
        padding: 10px;
    }

    .card-custom {
        padding: 10px;
    }

    .card-title-green {
        font-size: 16px;
        padding: 10px;
    }

    .custom-table thead th,
    .custom-table tbody td {
        font-size: 12px;
        padding: 8px;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .card-title-green {
        font-size: 14px;
    }

    .custom-table {
        font-size: 11px;
    }
}
/* Page Title */
.page-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

/* Table */
.level-table {
    width: 100%;
    border-collapse: collapse;
}

/* DARK HEADER */
.level-table thead th {
    background: #1e293b;
    color: #fff;
    padding: 14px;
    font-size: 14px;
    border-right: 1px solid #ffffff20;
}

/* Pink rows */
.level-table tbody tr {
    background: #e7c1c1;
    border-bottom: 1px solid #ffffff;
}

/* Level text */
.level-link {
    text-align: left;
    padding: 14px 20px !important;
    font-weight: 600;
    color: blue;
    cursor: pointer;
}

/* Hover effect */
.level-link:hover {
    background: #d9a9a9;
}

/* Table responsive scroll */
.table-responsive {
    overflow-x: auto;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
    .level-table thead th {
        font-size: 13px;
        padding: 12px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .content-area {
        padding: 10px;
    }

    .page-title {
        font-size: 18px;
    }

    .level-table thead th {
        font-size: 12px;
        padding: 10px;
    }

    .level-link {
        font-size: 13px;
        padding: 12px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .page-title {
        font-size: 16px;
    }

    .level-table {
        font-size: 12px;
    }

    .level-link {
        font-size: 12px;
    }
}
/* Cards */
.card-box {
  background:#fff;
  border-radius:10px;
  padding:20px;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* Section headers */
.header-blue {
  background:#2b6fcf;
  color:#fff;
  padding:12px 15px;
  border-radius:8px 8px 0 0;
}

.header-green {
  background:#31c52b;
  color:#fff;
  padding:12px 15px;
  border-radius:8px 8px 0 0;
}

.header-lightblue {
  background:#4c9bd6;
  color:#fff;
  padding:12px 15px;
  border-radius:8px 8px 0 0;
}

/* Form */
input.form-control {
  height:45px;
}
/* Card Container */
.custom-card{
  background:#fff;
  border-radius:10px;
  padding:20px;
}

/* Tabs */
.custom-tabs .nav-link{
  color:#fff;
  border-radius:0;
  font-weight:500;
  text-align:center;
}

.tab-today{background:#2d74da;}
.tab-yesterday{background:#6f63c2;}
.tab-week{background:#2ecc40;}
.tab-month{background:#f4a742;}
.tab-total{background:#ef5350;}

.custom-tabs .nav-link.active{
  opacity:0.9;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2);
}



/* Quick action buttons equal size */
.quick-actions .btn {
    flex: 1 1 100%;
    max-width: 300px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force horizontal scroll */
.table-responsive {
  overflow-x: scroll !important;
  -webkit-overflow-scrolling: smooth;
}

/* Make table wider than mobile screen */
.table-responsive table {
  min-width: 800px;
}

/* Show scrollbar (visible style) */
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #eee;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #28a745;
  border-radius: 10px;
}

