@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #052441;
    --mian-color-2: #ff6600;
    --mian-color-2: #EB7D07;
    --login-bg: linear-gradient(135deg, #020e1a, #031a2e, #042338);
    --market-bg: linear-gradient(180deg, #0a3a66 0%, #052441 50%, #031a2e 100%);
    --market-bg: linear-gradient(#225688 0%, #060A2A 100%);
    --head-heading: linear-gradient(135deg, #052441, #0a3a66);
}

body {
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #eee;
}

.login-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--login-bg);
    height: 100vh;
}

.login-box {
    background-color: var(--main-color);
    padding: 60px 30px;
    border-radius: 10px;
    border: 2px solid white;
    max-width: 450px;
    width: 100%;
}

.login-box .login-logo {
    text-align: center;
    margin-bottom: 20px;
}

.login-box .login-logo img {
    max-height: 80px;
}

.login-input-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.login-input-box .login-input-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: gray;
}

.login-input-box input {
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    box-shadow: none !important;
    padding: 10px 2px;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.login-btn {
    position: relative;
    background: linear-gradient(135deg, #a63e05, #e45807, #ff9f2e);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(228, 88, 7, 0.25), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    width: 100%;
}

.login-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.login-btn:hover::before {
    left: 130%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.5),
        0 3px 12px rgba(228, 88, 7, 0.35);
}

.login-btn:active {
    transform: scale(0.96);
}

.signing-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}


.header {
    background: var(--login-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.header .navbar-brand img {
    max-height: 50px;
}

.header .navbar-nav {
    gap: 10px;
}

.header .nav-item .nav-link {
    position: relative;
    color: #ccc;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 600;
}

.header .nav-item .nav-link:hover {
    color: #fff;
    background: rgba(235, 125, 7, 0.1);
}

.header .nav-item .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    box-shadow:
        0 0 10px rgba(235, 125, 7, 0.7),
        0 0 20px rgba(235, 125, 7, 0.5),
        inset 0 0 5px rgba(255, 255, 255, 0.2);
}



@keyframes borderGlow {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }
}



.menu-btn {
    border: 2px solid var(--mian-color-2);
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px;
    cursor: pointer;
    color: var(--mian-color-2);
    font-size: 20px;
    border-radius: 4px;
    box-shadow: none !important;
}

.header .offcanvas {
    background: var(--login-bg);
}

.header .btn-close {
    filter: invert(1);
    opacity: 1;
    transition: 0.3s;
}

.header .btn-close:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px #EB7D07, 0 0 20px #EB7D07;
}



.header .header-dropdown .dropdown-menu {
    background-color: var(--main-color);
    color: white;
    border-radius: 0;

}

.header .header-dropdown .dropdown-menu .dropdown-item {
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.header .header-dropdown .dropdown-menu .dropdown-item:hover {
    color: var(--main-color);
}


/* User Button */
.header .user-id {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow:
        0 0 8px rgba(235, 125, 7, 0.6),
        0 0 15px rgba(235, 125, 7, 0.4);
    border: none;
    transition: 0.3s;
}

/* Hover Effect */
.header .user-id:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 12px rgba(255, 140, 0, 0.8),
        0 0 20px rgba(255, 140, 0, 0.5);
}

/* Dropdown Box */
.user-dropdown {
    background: #031a2e;
    border-radius: 10px;
    border: none;
    padding: 8px 0;
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Dropdown Items */
.user-dropdown .dropdown-item {
    color: #fff;
    font-size: 13px;
    padding: 10px 16px;
    transition: 0.3s;
    font-weight: 600;
}

/* Hover */
.user-dropdown .dropdown-item:hover {
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    color: #fff;
}

/* Logout Special Color */
.user-dropdown .logout:hover {
    background: linear-gradient(135deg, #ff3b3b, #ff7a1a);
}


/* dashboard */

.ad-dash-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #020e1a, #031a2e, #042338);
    border-radius: 8px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
    text-decoration: none;
    color: white;
}

.ad-dash-box:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(255, 140, 0, 0.4);
}

.ad-dash-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    border-radius: 10px;
    font-size: 18px;
    box-shadow:
        0 0 10px rgba(235, 125, 7, 0.6),
        0 0 20px rgba(235, 125, 7, 0.4);
}

.ad-dash-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    width: calc(100% - 50px);
}

.ad-dash-content h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.ad-dash-content p {
    margin: 0;
    font-size: 12px;
    color: #bbb;
}

.admin-heading {

    background: var(--head-heading);
    padding: 8px 12px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

/* admin table one */
/* Table */
.admin-table-card {
    background-color: white;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;

}

.admin-table thead {
    background: linear-gradient(135deg, #c96a05, #ff8c1a);
}

/* Blue */
.thead-bg-blue {
    background: linear-gradient(135deg, #0052cc, #4da6ff);
}

/* Green */
.thead-bg-green {
    background: linear-gradient(135deg, #1e7d32, #4caf50);
}

/* Red */
.thead-bg-red {
    background: linear-gradient(135deg, #b71c1c, #ff4d4d);
}

/* Purple */
.thead-bg-purple {
    background: linear-gradient(135deg, #5e35b1, #9c6bff);
}

/* Teal (extra premium look) */
.thead-bg-teal {
    background: linear-gradient(135deg, #00695c, #26a69a);
}

.admin-table thead th {
    padding: 10px;
    text-align: left;
    font-weight: 600;
    border: none;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    vertical-align: middle;
    font-size: 14px;
    white-space: nowrap;
}


.admin-table tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.admin-table tbody tr:nth-child(even) td {
    background: #fff4eb4f;
}

.admin-table tbody tr:hover td {
    background: rgba(255, 140, 0, 0.12);
    transition: 0.3s;
}

.admin-table td {
    padding: 10px;
    border: 1px solid #c7c7c7;
    vertical-align: middle;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* Table two */
.admin-table-two {
    width: 100%;
    border-collapse: collapse;
}

.admin-table-two thead {
    background: linear-gradient(135deg, #d65f00, #ff8c1a);
}

.admin-table-two thead th {
    padding: 8px 16px;
    text-align: left;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    border: 1px solid #ebd9cc;
    vertical-align: middle;
    background-color: transparent;
    line-height: 1;
}

.admin-table-two tbody tr:nth-child(odd) td {
    background: #ffffff;
}

.admin-table-two tbody tr:nth-child(even) td {
    background: #fff4eb4f;
}

.admin-table-two td {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #e5e5e5;
    vertical-align: middle;
    white-space: nowrap;
    background-color: transparent;
}

.admin-table-two tbody tr:hover td {
    background: rgba(255, 140, 0, 0.08);
    transition: 0.2s;
}

.table-check {
    font-size: 16px;
}

.tab-match {
    background: linear-gradient(135deg, #cc2f2f, #ff6a1a);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tab-match.live-match::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #00ff6a;
    border-radius: 50%;
    display: inline-block;

    box-shadow: 0 0 6px #00ff6a, 0 0 10px #00ff6a;

    animation: liveBlink 1s infinite;
}

@keyframes liveBlink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.match-view {
    padding: 5px 12px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #c96a05, #ff8c1a);
    border-radius: 6px;
    border: 1px solid rgba(255, 140, 0, 0.4);
    transition: 0.3s;
    display: inline-block;
}

.match-view:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff8c1a, #ffb347);
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.6), 0 0 25px rgba(255, 140, 0, 0.3);
}

.admin-modal .modal-header {
    background: var(--market-bg);
    color: white;
    font-size: 0.9rem;
    padding: .7rem;
    border-radius: 0;
}

.admin-modal .modal-header .modal-title {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-modal .modal-header .btn-close {
    filter: invert(1);
    opacity: 1;
}


.admin-modal .modal-content {
    background-color: var(--main-color);
    color: white;
    border-radius: 0;
}

.model-close-btn {
    color: #ff4d4d;
    background: transparent;
    border: 1px solid #ff4d4d;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}

.model-close-btn:hover {
    background: #ff4d4d;
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.6);
}

.model-ok-btn {
    color: #fff;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    border: none;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
    border: 1px solid #ff9a2a;
}

.model-ok-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 10px rgba(255, 140, 0, 0.7),
        0 0 20px rgba(255, 140, 0, 0.4);
}

.btn-outline-orange {
    color: #EB7D07;
    background: transparent;
    border: 1px solid #EB7D07;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
    cursor: pointer;
}

.btn-outline-orange:hover {
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    color: #fff;
}

.admin-back-btn {
    background-color: #fefefe;
    color: #052441;
    border: 1px solid #ddd;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    line-height: 1;
}

.admin-back-btn:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.admin-top-heading {
    display: flex;
    justify-content: space-between;
    background: var(--head-heading);
    padding: 8px 12px;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    margin: 0;
    align-items: center;

}

.status-active {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.4);
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-inactive {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.top-header-create {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    background-color: white;
}

.create-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    border-radius: 6px;
    border: 1px solid rgba(255, 140, 0, 0.5);
    transition: 0.3s;
}

.create-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 10px rgba(255, 140, 0, 0.6),
        0 0 20px rgba(255, 140, 0, 0.3);
}

.create-btn i {
    font-size: 12px;
}

.create-btn.update {
    background: #052441;
    border: 1px solid #052441;
}

.create-btn.update:hover {
    box-shadow:
        0 0 10px rgba(5, 36, 65, 0.6),
        0 0 20px rgba(5, 36, 65, 0.3);
}

.tab-inner-drop .dropdown-menu {
    border-radius: 0;
}

.tab-inner-drop .dropdown-menu .dropdown-item {
    font-size: 14px;
    font-weight: 600;
}

.tab-inner-menu {
    position: fixed !important;
    transform: none !important;
    z-index: 99999;
    max-height: 300px;
    overflow-y: auto;
}

.modal-list-row {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ad-mod-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    background: var(--market-bg);
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 1px 4px 11px #71717166;
    width: calc(50% - 3px);
}

.ad-mod-box:hover {
    transform: translateY(-2px);
    box-shadow: 1px 4px 11px #99999966;
}

.ad-mod-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
}

.ad-mod-content h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.table-search-head {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.search-dropdown {
    position: relative;
}

.search-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

.search-box {
    width: 220px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.search-input {
    width: 100%;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.search-actions {
    display: flex;
    gap: 8px;
}

.search-submit {
    background: #0d6efd;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
}

.search-reset {
    background: #e0e0e0;
    color: #333;
    font-size: 12px;
    padding: 4px 10px;
}

.admin-label {
    font-size: 14px;
    font-weight: 600;
}

.admin-select,
.admin-input-one {
    font-size: 14px;
    box-shadow: none !important;
}

.admin-select-two {
    font-size: 11px;
    box-shadow: none !important;
    max-width: 120px;
    line-height: 1;
    border-radius: 4px;
}

.form-heading-one {
    font-weight: 700;
    font-size: 1.2rem;
}

.admin-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 18px;
    font-size: 14px;
    font-weight: 600;

    color: #fff;
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);

    border: 1px solid #EB7D07;
    border-radius: 6px;

    cursor: pointer;
    transition: 0.3s;
}

/* Wrapper */
.admin-search-box {
    position: relative;
    width: 100%;
}

/* Icon */
.admin-search-box i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);

    font-size: 13px;
    color: #999;
}

/* Input */
.admin-search-input {
    width: 100%;
    padding: 6px 10px 6px 30px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: 0.25s;
}

.admin-select:focus,
.admin-input-one:focus,
.admin-search-input:focus {
    border-color: #EB7D07;
    box-shadow: 0 0 4px rgba(255, 140, 0, 0.4);
}

.admin-search-input::placeholder {
    color: #aaa;
}

.admin-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 4px rgba(255, 140, 0, 0.4);
}

.admin-submit-btn:active {
    transform: scale(0.97);
}

.admin-submit-btn:disabled {
    background: #999;
    border-color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

/* Reset Button */
.reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 14px;
    font-size: 14px;
    font-weight: 600;

    color: #dc3545;
    background: #fff;

    border: 1px solid #dc3545;
    border-radius: 6px;

    cursor: pointer;
    transition: 0.25s;
}

/* Hover */
.reset-btn:hover {
    background: #dc3545;
    color: #fff;

    box-shadow: 0 3px 8px rgba(220, 53, 69, 0.3);
}

/* Active click */
.reset-btn:active {
    transform: scale(0.96);
}

/* Focus remove */
.reset-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Wrapper */
.admin-pagination-wrap {
    display: flex;
    justify-content: end;
    margin-top: 6px;
}

/* Base */
.admin-pagination {
    background: #f8f8f8;
    padding: 6px 8px;
    border-radius: 8px;
}

/* Links */
.admin-pagination .page-link {
    color: #052441;
    background: transparent;
    border: none;

    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;

    border-radius: 6px;
    margin: 0 3px;

    transition: 0.25s;
}

/* Hover */
.admin-pagination .page-link:hover {
    background: rgba(255, 140, 0, 0.15);
    color: #EB7D07;
}

/* Active (🔥 main highlight) */
.admin-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    color: #fff;

    box-shadow:
        0 4px 10px rgba(255, 140, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Disabled */
.admin-pagination .page-item.disabled .page-link {
    color: #aaa;
    background: transparent;
    cursor: not-allowed;
}

/* Prev / Next thoda alag */
.admin-pagination .page-item:first-child .page-link,
.admin-pagination .page-item:last-child .page-link {
    font-weight: 600;
}

.add-btn {
    background: #e6f7ec;
    color: #28a745;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #28a745;
    cursor: pointer;
    transition: 0.2s;
}

.add-btn:hover {
    background: #d4f3df;
}

.minus-btn {
    background: #fdeaea;
    color: #dc3545;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid #dc3545;
    cursor: pointer;
    transition: 0.2s;
}

.minus-btn:hover {
    background: #f9d6d6;
}

.admin-input-two {
    width: 100%;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    background: #0a2f4d;
    border: 1px solid #0f4c75;
    border-radius: 6px;

    outline: none;
    transition: 0.3s;
}

.admin-input-two::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.admin-input-two:focus {
    background: #0d3b63;
    border-color: #EB7D07 !important;
    box-shadow:
        0 0 6px rgba(255, 140, 0, 0.6);
}

/* Disabled */
.admin-input-two:disabled {
    background: #02111d;
    color: #aaa;
}

.ba-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ba-list li {
    padding: 6px 12px;
    font-size: 12.5px;
    font-weight: 600;
    color: #052441;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ba-list li:hover {
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    color: #fff;
    border-color: #EB7D07;
    transform: translateY(-1px);
}

.reset-password-list {
    list-style: none;
    padding: 10px;
    margin: 0;

    background: #0a2f4d;
    border: 1px solid #0f4c75;
    border-radius: 8px;
}

.reset-password-list li {
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;

    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    justify-content: space-between;
}

.reset-password-list li:last-child {
    border-bottom: none;
}

.reset-password-list li span {
    color: #ff9a2a;
    font-weight: 700;
}

.admin-tabs-one {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: end;
    padding: 10px;
}

.admin-tabs-one .nav-link {
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #052441;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.admin-tabs-one .nav-link:hover {
    background: rgba(255, 140, 0, 0.12);
    color: #EB7D07;
    border-color: #ff9a2a;
}

.admin-tabs-one .nav-link.active {
    background: linear-gradient(135deg, #EB7D07, #ff9a2a);
    color: #fff;
    border-color: #EB7D07;
    box-shadow: 0 3px 8px rgba(255, 140, 0, 0.35);
}

.admin-tabs-one .nav-link:focus {
    box-shadow: none;
}

.admin-tabs-one .nav-link:active {
    transform: scale(0.96);
}


.text-green {
    color: #28a745 !important;
}

.text-red {
    color: #ff0003 !important;
}

.credit-debit-box {
    background: #fbfbfb;
    padding: 10px;
    font-family: sans-serif;
}

.credit-debit-box span {
    font-size: 11px;
    font-weight: 600;
    color: #777;
    display: block;
}

.credit-debit-box h3 {
    margin: 4px 0 8px;
    font-size: 22px;
    font-weight: 700;
}

.filter-bets-row {
    margin: 0;
}

/* Each column box */
.filter-bets-row>.fb-box {
    background: #ffffff;
    border: 1px solid #e5e5e5;

    padding: 10px;
    text-align: center;
    transition: 0.25s;
}

/* Heading */
.bet-heading {
    font-size: 13px;
    font-weight: 700;
    color: #052441;
    margin-bottom: 4px;
}

.fb-box .text-mute {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

/* MARKET */
.market-box {
    margin-bottom: 10px;
}

.market-head {
    background: var(--market-bg);
    color: white;
}

.market-head .market-head-heading {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.market-head-name-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    flex-wrap: wrap;
    gap: 2px;
}

.lagaikhai-text {
    border-left: 1px solid #ccc;
    text-align: center;
    padding: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    justify-content: center;
    display: flex;
    align-items: center;
}

.cashout-btn {
    background: linear-gradient(135deg, #d35400, #f39c12);
    color: #fff;
    border: 1px solid #ff8c42;
    padding: 2px 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    margin-left: auto;
}

.cashout-btn:hover {
    background: linear-gradient(135deg, #ff6a00, #ffa500);
    box-shadow: 0 2px 8px rgba(255, 122, 24, 0.4);
    transform: translateY(-1px);
}

.market-body {
    margin: 0;
    border-bottom: 1px solid #ccc;
}

.market-body .team-name {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.market-bet-box {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    line-height: 1;
    border-left: 1px solid #ccc;
    cursor: pointer;
    padding: 2px;
}

.market-bet-box .odds-value {
    font-size: 1rem;
    font-weight: 600;
}

.market-bet-box .odds-rate {
    font-size: .7rem;
}

.back {
    background: linear-gradient(180deg, #75bef3, #328fd6);
}

.lay {
    background: linear-gradient(180deg, #faa9ba, #f76c8a);
}

.market-body .market-team-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
    background-color: white;
    padding-top: 2px;
    padding-bottom: 2px;
    line-height: 1;
}

.market-left-row {
    padding: 0;
    margin: 0;
}

.suspended {
    position: relative;
}

.suspended::before {
    position: absolute;
    content: "SUSPENDED";
    background-color: #47b1ffe3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.marketbet-point {
    font-size: 14px;
}

.tv-score-btn {
    background-color: white;
    border-radius: 2px;
    color: black;
    padding: 4px 10px;
    font-size: 12px;
    line-height: 1;
}

.max-text {
    font-size: 11px;
    font-weight: 700;
}

.b-btn {
    background-color: white;
    border: .5px solid gray;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
}

.market-team-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.ledger-amount-total {
    font-size: 1.5rem;
    font-weight: 700;
}

.ledger-amount-total small {
    font-size: 0.8rem;
    font-weight: 600;
}

.lena-heading {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #00c708;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.dena-heading {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #c70000;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.clear-heading {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    background: #0067c7;
    color: white;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

.transaction-btn {
    background-color: yellow;
    color: black;
    border-radius: 4px;
    padding: 2px 8px;
    line-height: 1;
    text-decoration: none;
}

.admin-card {
    border-radius: 0;
    border: none;
}

.pct-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.deleted-blod {
    font-size: 14px;
    font-weight: 600;
}

.settingu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.settingu-list .setting-list-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: linear-gradient(135deg, #225688, #060A2A);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.settingu-list .setting-list-link:hover {
    background: linear-gradient(135deg, #2f7cc0, #0a0f3d);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.settingu-list .setting-list-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.settingu-list .setting-list-link:hover::before {
    left: 100%;
}


.rules-tabs {
    justify-content: center;
}

.rules-tabs .nav-link {
    background-color: #ccc;
    font-size: 13px;
    padding: 8px 20px;
    color: black;
    border-radius: 0;
}

.rules-tabs .nav-link.active {
    font-weight: 600;
    color: black;
    background-color: white;
}

.rules-heading-one {
    font-size: 20px;
    font-weight: 600;
}

.rules-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 16px;
}

.rules-card .card-header {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 14px;
    color: #333;
}

.rules-cart-olist {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #333;
    list-style-position: inside;
}

.rules-cart-olist li {
    padding: 10px 8px;
    line-height: 1.5;
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
    border-bottom: 1px solid #e5e5e5;
    border-radius: 4px;
    margin-bottom: 6px;
}

.rules-cart-olist li:last-child {
    margin-bottom: 0;
}

.rules-modal-list {
    list-style: none;
    padding: 0;
}

.rules-modal-list li {
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 8px;
    transition: 0.3s;
}

.rules-modal-list li i {
    font-size: 16px;
    color: green;
}

.rules-accordinon .accordion-button {
    font-size: 14px;
    padding: 0.7rem;
    font-weight: 600;
}





@media screen and (max-width: 786px) {
    .ad-dash-box {
        padding: 10px 12px;
        border-radius: 6px;
    }

    .ad-dash-icon {
        width: 35px;
        height: 35px;
        border-radius: 8px;
        font-size: 16px;
        gap: 8px;
    }

    .ad-dash-content {
        gap: 2px;
        width: calc(100% - 40px);
    }

    .ad-dash-content h2 {
        font-size: 14px;
        font-weight: 600;
    }

    .ad-dash-content p {
        font-size: 10px;
    }

    .header .navbar-brand img {
        max-height: 40px;
    }

    .menu-btn {
        padding: 4px;
        font-size: 18px;
        border-radius: 4px;
    }

    .header .user-id {
        font-size: 11px;
    }

    .ad-mod-content h2 {
        font-size: 12PX;
    }


    .admin-top-heading {
        font-size: 0.9rem;
    }

    .marketbet-point,
    .lagaikhai-text {
        font-size: 12px;
    }

    .market-head .market-head-heading,
    .market-body .team-name,
    .market-bet-box .odds-value {
        font-size: 14px;
    }


}