@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1a237e;
    --secondary-color: #3f51b5;
    --accent-color: #ff4444;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    /* --dark-color: #212529; */
    --dark-color: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
}

a {
    text-decoration: none;
}

/* Top Header Start */
#top-header {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 15px;
}
/* Top Header End */

/* Navbar Start */
nav {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

nav .navbar-brand {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

nav .navbar-brand:hover, nav .navbar-brand:focus, .dashboard-header .logo:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 394px) {
    nav .navbar-brand {
        font-size: 26px;
    }
}

nav .navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

nav .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.auth-btn {
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-btn.loginbtn {
    background: var(--secondary-color);
    color: white;
    border: 2px solid var(--secondary-color);
}

.auth-btn.loginbtn:hover {
    background: transparent;
    color: var(--secondary-color);
}

.auth-btn.registerbtn {
    background: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.auth-btn.registerbtn:hover {
    background: transparent;
    color: var(--success-color);
}
/* Navbar End */

/* Notice Banner Start */
#notice-banner {
    background: linear-gradient(45deg, var(--accent-color), #ff6b6b);
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

#notice-banner .notice-text {
    white-space: nowrap;
    animation: scroll-notice 25s linear infinite;
    -webkit-animation: scroll-notice 25s linear infinite;
    font-weight: 500;
    font-size: 16px;
}

@keyframes scroll-notice {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }
}
/* Notice Banner End */

/* Hero Section Start */
#hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

#hero-section .hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

#hero-section .hero-subtitle {
    font-size: 21px;
    margin-bottom: 30px;
    opacity: 0.9;
}

#hero-section .hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

#hero-section .hero-features .hero-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
/* Hero Section End */

/* Account Cards Section Start */
#accounts-section {
    padding: 80px 0;
    background: white;
}

#accounts-section .section-title, #features-section .section-title {
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-align: center;
}

#accounts-section .section-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
}

#accounts-section .account-card {
    /* background: white; */
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(253, 121, 168, 0.1) 100%);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

#accounts-section .account-card:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

#accounts-section .account-card .account-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#accounts-section .account-card .account-header .account-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    color: white;
    margin-right: 15px;
}

#accounts-section .account-card .account-header .account-icon img {
    width: 60px;
    height: 60px;
}

#accounts-section .account-card .account-header .account-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0;
}

#accounts-section .account-card .account-header .account-subtitle {
    font-size: 14px;
    color: #666;
}

#accounts-section .account-card .category-preview {
    background: #f8f9fa;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

#accounts-section .account-card .category-preview .preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

#accounts-section .account-card .category-preview .preview-item:last-child {
    border-bottom: none;
}

#accounts-section .account-card .category-preview .preview-item .preview-label {
    font-weight: 500;
    color: var(--dark-color);
}

#accounts-section .account-card .category-preview .preview-item .preview-count {
    font-weight: 500;
    font-size: 13px;
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

#accounts-section .account-card button, .main-btn {
    font-weight: 500;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    width: 100%;
    padding: 12px;
    border: none !important;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#accounts-section .account-card button:hover, .main-btn:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.3);
}
/* Account Cards Section End */

/* Features Section Start */
#features-section {
    padding: 80px 0;
    /* background: #f8f9fa; */
    background: linear-gradient(135deg, rgba(168, 237, 234, 0.3) 0%, rgba(254, 214, 227, 0.3) 100%);
}

#features-section .feature-card {
    height: 100%;
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

#features-section .feature-card .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-size: 32px;
    margin: 0 auto 20px;
}
/* Features Section End */

/* Footer Section Start */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}
/* Footer Section End */

/* Auth System Start */
#auth-sys {
    padding: 40px 16px;
}
#auth-sys .form-container {
    max-width: 448px;
    overflow: hidden;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#auth-sys .form-container .form-head {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 16px 24px;
}

#auth-sys .form-container .form-head h2 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: white;
    margin: 0;
}

#auth-sys .form-container .auth-form {
    padding: 24px;
}

#auth-sys .form-container .auth-form .form-check {
    padding-top: 20px;
}

#auth-sys .form-container .auth-form .main-btn {
    margin-top: 20px;
}

#auth-sys .form-container .auth-form .auth-bottom {
    margin-top: 20px;
    text-align: center;
}

#auth-sys .form-container .auth-form a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

#auth-sys .form-container .auth-form a:hover {
    color: var(--primary-color);
}

.form-control:focus {
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 0 0 .25rem rgba(26, 35, 126, 0.25);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 .25rem rgba(26, 35, 126, 0.25);
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}
/* Auth System End */

/* Dashboard Header Start */
.dashboard-header {
    background: white;
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* border-bottom: 1px solid #edf2f7; */
}

.dashboard-header .logo {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 575px) {
    .dashboard-header .logo {
        font-size: 26px;
    }
}

@media screen and (max-width: 395px) {
    .dashboard-header .logo {
        font-size: 20px;
    }
}

.dashboard-header .balance-user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-header .balance-info {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* .dashboard-header .balance-amount {
    font-size: 16px;
    font-weight: 700;
} */

.dashboard-header .user-dropdown {
    position: relative;
}

.dashboard-header .user-email-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dashboard-header .user-email-btn:hover {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
}

.dashboard-header .dropdown-menu {
    background: white;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 2px !important;
}

.dashboard-header .dropdown-item {
    padding: 10px 16px;
    color: #4a5568;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dashboard-header .dropdown-item:hover {
    background: #f3f4f6;
    color: #2d3748;
}

.dashboard-header .hamburger-menu {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.dashboard-header .hamburger-menu:hover {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
}


@media screen and (max-width: 348px) {
    .dashboard-header .balance-user-section {
        gap: 10px;
    }
    .dashboard-header .balance-info {
        padding: 8px 10px;
        font-size: 12px;
    }

    .dashboard-header .hamburger-menu {
        font-size: 16px;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard-header {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-bottom: 1px solid #edf2f7;
    }
}
/* Dashboard Header End */

/* Desktop Navigation Start */
.nav-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-bottom: 2px solid #edf2f7;
    margin-top: 5px;
}

.nav-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: start;
}

.navlink {
    background: white;
    color: #4a5568;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    /* min-width: 140px; */
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.navlink:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navlink.active {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
/* Desktop Navigation End */

/* Mobile Menu Start */
#mobileMenu {
    background-color: var(--primary-color);
    padding: 10px 16px;
    margin-top: 2px;
}

#mobileMenu a {
    background-color: #1e40af;
    color: white;
    padding: 10px 12px;
}

#mobileMenu a:hover {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

#mobileMenu a i {
    margin-right: 8px;
}
/* Mobile Menu End */

/* Mobile Navigation Start */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    padding: 12px 8px;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    border-top: 1px solid #edf2f7;
    z-index: 1000;
}

.mobile-nav ul {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    margin-bottom: 9px !important;
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 8px;
    border-radius: 8px;
    min-width: 60px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.mobile-nav ul a {
    flex-direction: row;
    align-items: start;
    margin-bottom: 5px;
}

.mobile-nav ul a i {
    margin-right: 5px;
    margin-bottom: 0px;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
    background: #303f9f;
    text-decoration: none;
}

.mobile-nav-item i {
    font-size: 16px;
    margin-bottom: 4px;
}
/* Mobile Navigation End */

/* Profile Start */
#profile {
    padding: 40px 0;
    max-width: 600px;
    flex: 1 0 auto;
}

@media screen and (min-width: 767px) {
    #profile {
        width: 50%;
        margin: auto;
    }
}

#profile .card-header {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

#profile .info-item {
    margin-bottom: 15px;
}

#profile .info-item .info-label {
    font-size: 14px;
    color: #666;
}

#profile .info-item .info-value {
    font-size: 15px;
    font-weight: 600;
}
/* Profile End */

/* Main Card Start */
#maincard {
    padding: 40px 0;
    flex: 1 0 auto;
}

#maincard .card-header {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

#maincard .info-item {
    padding: 30px;
}

#maincard .info-item .info-label {
    font-size: 14px;
    color: #666;
}

#maincard .info-item .info-value {
    font-size: 15px;
    font-weight: 600;
}
/* Main Card End */

/* DataTable Custom Styling Start */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: var(--dark-color);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.25rem 0.5rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: var(--primary-color);
    color: white !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--primary-color);
    color: white !important;
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    background: transparent;
    color: #6c757d !important;
}

.table > :not(caption) > * > * {
    padding: 0.75rem;
}

.dataTables_wrapper .form-select,
.dataTables_wrapper .form-control {
    border-color: #dee2e6;
}

.dataTables_wrapper .form-select:focus,
.dataTables_wrapper .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}

table.dataTable th.dt-type-numeric, table.dataTable th.dt-type-date, table.dataTable td.dt-type-numeric, table.dataTable td.dt-type-date {
    text-align: left;
}

table.dataTable th.dt-type-numeric div.dt-column-header {
    flex-direction: row;
    text-align: left;
}

/* Date Filter Styling */
#dayFilter,
#monthFilter,
#yearFilter {
    min-width: 100px;
    background-color: white;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

#dayFilter:focus,
#monthFilter:focus,
#yearFilter:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
}
/* DataTable Custom Styling End */

/* Sub Card Start */
.subcard li {
    margin-bottom: 10px;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.subcard li:hover {
    background: #f3f4f6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.subcard li p {
    font-size: 14px;
}

.subcard li small, .subcard li small .mstatus {
    font-size: 12px;
}

.subcard .subcard-wrapper {
    padding: 5px 0;
}

.subcard span {
    font-weight: 600;
    font-size: 18px;
    color: var(--success-color);
}

.subcard span.minus {
    color: var(--accent-color);
}

.subcard .no-history {
    color: #4b5563;
    margin-bottom: 0;
    padding: 24px;
    font-size: 18px;
    font-weight: 500;
}
/* Sub Card End */

/* Payment Options Start */
.payment-options {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-option label {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
}

.payment-logo {
    width: 40px;
    height: auto;
    margin-right: 10px;
}
/* Payment Options End */

/* Account Modal Start */
.accmodal .modal-header {
    background: linear-gradient(45deg, #121a5a, #2c3a93);
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
}

.accmodal .modal-title {
    font-size: 18px;
    font-weight: 700;
}

.accmodal .modal-header .btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    box-shadow: none;
}

.accmodal span.mtitle, .accmodal label {
    font-size: 16px;
    font-weight: 600;
}

.accmodal span.mamount, .accmodal span.mstock {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
}

.accmodal input:focus {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#mtotal {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}
/* Account Modal End */

/* Disabled Div */
.div-disabled {
    position: relative;
    pointer-events: none;
    opacity: 0.5;
}