/* Estilos específicos del layout de dashboard (.dashboard_main_wrapper),
   extraídos de frontend-minimal.css para aislar la maquetación del panel. */

.dashboard_main_wrapper {
    flex-direction: column;
    position: relative;
}
.dashboard_main_wrapper .sidebar {
    width: 100%;
    min-height: auto;
    flex: none;
    background: #020617;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 40px 24px;
}
/* Fila 1: logo solo */
.dashboard_main_wrapper .sidebar .logo {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 20px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard_main_wrapper .sidebar .logo img {
    filter: brightness(0) invert(1);
    max-height: 36px;
    width: auto;
}
.dashboard_main_wrapper .sidebar .sidebar_close_icon i {
    color: #e5e7eb;
}
/* Fila 2: menú horizontal + usuario a la derecha */
.dashboard_main_wrapper .sidebar .sidebar_iner {
    flex: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 0 0;
    min-height: auto;
    gap: 24px;
}
.dashboard_main_wrapper .sidebar .sidebar-user {
    order: 2;
    margin-left: auto;
    padding: 0 0 0 24px;
    border-bottom: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.dashboard_main_wrapper .sidebar .sidebar-profile {
    width: 40px;
    height: 40px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.dashboard_main_wrapper .sidebar .sidebar-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dashboard_main_wrapper .sidebar .sidebar-user h4 {
    color: #f9fafb;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}
.dashboard_main_wrapper .sidebar .sidebar-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-start;
    margin-top: 0;
    min-height: 0;
}
.dashboard_main_wrapper .sidebar .sidebar-badge-list {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}
.dashboard_main_wrapper .sidebar .sidebar-badge-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Menú horizontal: lista en fila, sin iconos, más espacio */
.dashboard_main_wrapper .sidebar ul {
    order: 1;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.dashboard_main_wrapper .sidebar ul li {
    display: inline-flex;
}
.dashboard_main_wrapper .sidebar ul li a {
    color: #e2e8f0;
    border-radius: 8px;
    margin: 0;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.dashboard_main_wrapper .sidebar ul li a .menu_icon {
    display: none !important;
}
.dashboard_main_wrapper .sidebar ul li a span {
    color: inherit;
    font-size: 14px;
    font-weight: 500;
}
.dashboard_main_wrapper .sidebar ul li a.active,
.dashboard_main_wrapper .sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #f9fafb;
}
.dashboard_main_wrapper .sidebar ul li a.active span,
.dashboard_main_wrapper .sidebar ul li a:hover span {
    color: inherit;
}

/* Submenús (collapse): desplegables debajo del ítem */
.dashboard_main_wrapper .sidebar ul li {
    position: relative;
}
.dashboard_main_wrapper .sidebar ul li .collapse.chat-menu-ul,
.dashboard_main_wrapper .sidebar ul li .collapse#collapseUpcomingCourse {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 100;
}
.dashboard_main_wrapper .sidebar ul li .chat-submenu,
.dashboard_main_wrapper .sidebar ul li .collapse a {
    display: block;
    padding: 10px 16px;
    color: #cbd5e1;
    font-size: 13px;
    text-decoration: none;
    padding-left: 16px;
}
.dashboard_main_wrapper .sidebar ul li .chat-submenu:hover,
.dashboard_main_wrapper .sidebar ul li .collapse a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #f9fafb;
}
.dashboard_main_wrapper .sidebar .fa-chevron-down {
    color: #94a3b8 !important;
    font-size: 12px;
    margin-left: 4px;
}

/* Área main ocupa todo el ancho */
.dashboard_main_wrapper .dashboard_part {
    width: 100% !important;
}
@media (max-width: 991.98px) {
    .dashboard_main_wrapper .sidebar {
        padding: 0 20px 20px;
    }
    .dashboard_main_wrapper .sidebar .logo {
        padding: 20px 0 16px;
    }
    .dashboard_main_wrapper .sidebar .sidebar_iner {
        flex-direction: column;
        align-items: stretch;
        padding-top: 16px;
        gap: 0;
    }
    .dashboard_main_wrapper .sidebar .sidebar-user {
        order: 2;
        margin-left: 0;
        padding: 16px 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .dashboard_main_wrapper .sidebar ul {
        order: 1;
        flex: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .dashboard_main_wrapper .sidebar ul li a {
        justify-content: flex-start;
        padding: 12px 16px;
    }
}

/* Área principal del dashboard: fondo claro como login izquierda */
.dashboard_main_wrapper .dashboard_part {
    background: #f9fafb;
}
.dashboard_main_wrapper .main_content_iner {
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* Header del dashboard: notificaciones y perfil a la misma altura que el logo, a la derecha */
.dashboard_main_wrapper .header_iner {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    min-height: 72px;
    padding: 0 32px 0 24px;
    /* Espacio a la derecha para no solaparse con el bloque posicionado */
    padding-right: 320px;
}
/* Bloque notificaciones + perfil: menú horizontal, misma altura que el logo, alineado a la derecha */
.dashboard_main_wrapper .header_iner > div.d-flex.align-items-center {
    position: absolute;
    top: 0;
    right: 40px;
    height: 80px;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    z-index: 15;
}
/* Lista de iconos (campana, wishlist, carrito, puntos) en fila horizontal */
.dashboard_main_wrapper .header_iner .notification_wrapper ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li {
    display: flex;
    align-items: center;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li:not(:last-child) {
    margin-right: 12px;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li:last-child {
    margin-right: 16px;
}
/* Separación entre bloque de notificaciones y perfil */
.dashboard_main_wrapper .header_iner .notification_wrapper {
    margin-right: 12px;
}
@media (max-width: 991.98px) {
    .dashboard_main_wrapper .header_iner {
        padding: 16px 20px;
        min-height: auto;
        padding-right: 20px;
    }
    .dashboard_main_wrapper .header_iner > div.d-flex.align-items-center {
        position: static;
        height: auto;
    }
}

/* Título del dashboard (saludo) y cards base */
.dashboard_main_wrapper .main_content_iner .dashboard_title {
    margin-bottom: 28px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_title h3 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.dashboard_main_wrapper .main_content_iner .dashboard_title h3 span {
    color: #1a1a1a;
}
.dashboard_main_wrapper .main_content_iner .dashboard_title p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 24px;
    box-shadow: none;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card .head h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card .head a {
    font-size: 14px;
    font-weight: 500;
    color: #2563eb;
}

/* Botón \"Complete This Course\" y botones primarios en dashboard */
.dashboard_main_wrapper .main_content_iner .theme_btn.cart_primary_btn,
.dashboard_main_wrapper .main_content_iner .theme_btn:not(.small_btn2):not(.point_btn) {
    background: #0f172a;
    color: #fff;
    border: none;
    border-radius: 10px;
    height: 52px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dashboard_main_wrapper .main_content_iner .theme_btn.cart_primary_btn:hover,
.dashboard_main_wrapper .main_content_iner .theme_btn:not(.small_btn2):not(.point_btn):hover {
    background: #111827;
    color: #fff;
}

/* Banner de curso en progreso */
.dashboard_main_wrapper .main_content_iner .dashboard_banner {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .title {
    color: #0f172a;
    font-weight: 600;
    font-size: 16px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .progress {
    background: #e2e8f0;
    border-radius: 999px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .progress-bar {
    background: #0f172a;
    border-radius: 999px;
}

/* Noticeboard & badges dentro del dashboard */
.dashboard_main_wrapper .main_content_iner .noticeboard-card {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}
.dashboard_main_wrapper .main_content_iner .theme-btn.btn_sm {
    background: #0f172a;
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
}
.dashboard_main_wrapper .main_content_iner .theme-btn.btn_sm:hover {
    background: #111827;
    color: #fff;
}
.dashboard_main_wrapper .main_content_iner {
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Buscador del header en dashboard */
.dashboard_main_wrapper .header_iner .category_search .theme_search_field {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    height: 48px;
}
.dashboard_main_wrapper .header_iner .theme_search_field .form-control {
    font-family: var(--font-body);
    font-size: 14px;
    color: #1a1a1a;
    border: none !important;
}
.dashboard_main_wrapper .header_iner .theme_search_field .form-control::placeholder {
    color: #94a3b8;
}
.dashboard_main_wrapper .header_iner .theme_search_field .btn,
.dashboard_main_wrapper .header_iner .theme_search_field .input-group-prepend .btn {
    color: #64748b !important;
    border: none !important;
    background: transparent !important;
    padding: 0 14px;
}

/* Iconos de notificación + puntos + perfil */
.dashboard_main_wrapper .header_iner .notification_wrapper ul li a .notify_icon img {
    width: 22px;
    height: 22px;
    opacity: 0.85;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li a:hover .notify_icon img {
    opacity: 1;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notify_count {
    background: #1a1a1a;
    color: #fff;
    font-size: 10px;
    min-width: 18px;
}
.dashboard_main_wrapper .header_iner .theme_btn.point_btn {
    background: #f1f5f9 !important;
    color: #1a1a1a !important;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
}
.dashboard_main_wrapper .header_iner .theme_btn.point_btn:hover {
    background: #e2e8f0 !important;
    color: #1a1a1a !important;
}
.dashboard_main_wrapper .header_iner .profile_info_icon {
    color: #475569;
}
.dashboard_main_wrapper .header_iner .profile_info_icon svg {
    width: 22px;
    height: 22px;
}

/* Menú de perfil del usuario en el header */
.dashboard_main_wrapper .header_iner .profile_info {
    position: relative;
}
.dashboard_main_wrapper .header_iner .profile_info_iner {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 100;
}
.dashboard_main_wrapper .header_iner .profile_info:hover .profile_info_iner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dashboard_main_wrapper .header_iner .profile_info_iner a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}
.dashboard_main_wrapper .header_iner .profile_info_iner a:hover {
    background: #f8fafc;
    color: #1a1a1a;
}

/* Dropdown de notificaciones en el header */
.dashboard_main_wrapper .header_iner .notification_wrapper ul li {
    position: relative;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: -4px;
    padding-top: 12px;
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 100;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li:hover .notification_area {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body {
    padding: 12px 0;
    max-height: 280px;
    overflow-y: auto;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body .single_nofy {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body .single_nofy:last-child {
    border-bottom: none;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body .single_nofy:hover {
    background: #f8fafc;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body .single_nofy .notyfy_content h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.35;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_body .single_nofy .notyfy_content p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_area .notification_footer {
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_footer .readMore_text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.15s ease;
}
.dashboard_main_wrapper .header_iner .notification_wrapper ul li .notification_footer .readMore_text:hover {
    color: #475569;
}

/* ----- Contenido principal del dashboard ----- */
.dashboard_main_wrapper .main_content_iner.main_content_padding .container-fluid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
.dashboard_main_wrapper .main_content_iner .container-fluid.dashboard_main_container {
    padding-top: 32px;
    padding-bottom: 32px;
}
.dashboard_main_wrapper .main_content_iner .container-fluid.my_courses_container {
    padding-top: 32px;
    padding-bottom: 32px;
}
.dashboard_main_wrapper .main_content_iner .row {
    margin-bottom: 24px;
}
.dashboard_main_wrapper .main_content_iner .row:last-child {
    margin-bottom: 0;
}

/* Fila de KPIs (Balance, Total Spent, etc.) */
.dashboard_main_wrapper .main_content_iner .row.dashboard_kpi_row {
    margin-bottom: 8px;
}
.dashboard_main_wrapper .main_content_iner .row.dashboard_kpi_row .dashboard_kpi_mt {
    margin-top: 20px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_courses_section {
    margin-top: 40px;
}

/* Cards de estadísticas compactas */
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center {
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 18px 14px;
    transition: box-shadow 0.2s ease;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center .icon {
    width: 36px;
    height: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center .icon svg {
    width: 36px;
    height: 36px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    margin-bottom: 4px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_card.text-center h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2px;
}

/* Banner curso en progreso (grid thumb + info) */
.dashboard_main_wrapper .main_content_iner .dashboard_banner {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    background: #fff;
}
@media (max-width: 767.98px) {
    .dashboard_main_wrapper .main_content_iner .dashboard_banner {
        grid-template-columns: 1fr;
    }
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .thumb {
    height: 160px;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    display: flex;
    align-items: flex-start;
    padding: 12px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .thumb .badge {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info {
    padding: 24px;
    max-width: none;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .course_qualification .banner_info_profile {
    text-decoration: none;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .course_qualification .banner_info_profile .img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 8px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .course_qualification .banner_info_profile .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .course_qualification .banner_info_profile p {
    font-family: var(--font-body);
    font-size: 13px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .course_qualification .stars i {
    color: #fbbf24;
    font-size: 12px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .title:hover {
    color: #475569;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .progress {
    height: 8px;
    border-radius: 999px;
    background: #e2e8f0;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .progress .progress-bar {
    border-radius: 999px;
    background: #1a1a1a;
}
.dashboard_main_wrapper .main_content_iner .dashboard_banner .banner_info .progress .progress-status {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}




/* ----- Modal Leaderboard (footer) ----- */
.modal.leaderboard-boarder#myLeaderBoard .modal-content {
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}
.modal.leaderboard-boarder#myLeaderBoard .modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #E2E8F0;
    background: #fff;
}
.modal.leaderboard-boarder#myLeaderBoard .modal-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}
.modal.leaderboard-boarder#myLeaderBoard .modal-header .close {
    padding: 0;
    margin: 0;
    opacity: 0.7;
    font-size: 28px;
    line-height: 1;
    color: #64748b;
    background: none;
    border: none;
    transition: opacity 0.15s ease;
}
.modal.leaderboard-boarder#myLeaderBoard .modal-header .close:hover {
    opacity: 1;
    color: #1a1a1a;
}
.modal.leaderboard-boarder#myLeaderBoard .modal-body {
    padding: 24px;
    background: #fff;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader {
    width: 100%;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader .nav-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader .nav-item {
    margin: 0;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader .nav-link.nav-point {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    padding: 10px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader .nav-link.nav-point:hover {
    color: #1a1a1a;
    background: #f8fafc;
}
.modal.leaderboard-boarder#myLeaderBoard .reward-leader .nav-link.nav-point.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
    background: #f1f5f9;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody {
    min-height: 200px;
    padding: 8px 0;
    font-family: var(--font-body);
    font-size: 14px;
    color: #334155;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .reward-leader-item,
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .point-table,
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .reward-leader-content {
    font-family: var(--font-body);
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .point-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .point-table ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .point-table ul li:last-child {
    border-bottom: none;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody.leaderboardBody .theme_btn.small_btn4 {
    margin-top: 16px;
}

/* ----- Contenido del leaderboard (_leaderboard.blade.php) ----- */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table {
    font-family: var(--font-body);
    width: 100%;
}
/* Lista simple (how to point / how to level) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table > ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table > ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table > ul li:last-child {
    border-bottom: none;
}
/* Botones de acción (Back, How to collect points, etc.) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table .actions {
    padding-top: 16px;
    margin-top: 8px;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table .theme_btn.small_btn4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: #f8fafc;
    color: #1a1a1a;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table .theme_btn.small_btn4:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
/* Contenedor de la lista rankeada */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table-body {
    max-height: 360px;
    overflow-y: auto;
    margin-bottom: 16px;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-content {
    width: 100%;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-content > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Fila de cada usuario (ranking) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-content > ul > li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: #fafafa;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    list-style: none;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-content ul li .reward-leader-item .reward-leader-content.reward-click-btn {
    cursor: pointer;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-content ul li:hover .reward-leader-item .reward-leader-content.reward-click-btn {
    opacity: 0.9;
}
/* Bloque usuario (avatar + nombre) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-profile .img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #e2e8f0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-profile .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-profile .content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Número (puntos/nivel/badges) a la derecha */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-item .reward-leader-content {
    text-align: right;
    flex-shrink: 0;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-item .reward-leader-content h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-item .reward-leader-content p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}
/* Posición (1, 2, 3...) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-position {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #94a3b8;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-position.one {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #fff;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-position.two {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: #fff;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .reward-leader-position.three {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: #fff;
}
/* Badges (vista detalle de un usuario) */
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
    margin-bottom: 8px;
}
.modal.leaderboard-boarder#myLeaderBoard #leaderboardBody .point-table-inner .badge-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* ===== My Courses / My Quizzes (cards modernas) ===== */
.dashboard_main_wrapper .main_content_iner .dashboard_lg_card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 32px;
}

.dashboard_main_wrapper .main_content_iner .my_courses_wrapper {
    padding-bottom: 32px;
}

/* Título */
.dashboard_main_wrapper .main_content_iner .my_courses_container .section__title3 h3 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Card de curso comprado */
.my-courses-modern .my-course-card-link {
    display: block;
    height: 100%;
}

.my-courses-modern .my-course-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.my-courses-modern .my-course-card-link:hover .my-course-card {
    border-color: #94a3b8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.my-courses-modern .my-course-card-thumb {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.my-courses-modern .my-course-card-thumb > div {
    position: absolute;
    top: 12px;
    right: 12px;
}

.my-courses-modern .my-course-card-thumb .my-course-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    text-transform: capitalize;
    border-radius: 0 10px 0 0;
    padding: 6px 14px;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.my-courses-modern .my-course-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.my-courses-modern .my-course-card-title {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.2s;
}

.my-courses-modern .my-course-card-link:hover .my-course-card-title {
    color: #2563EB;
}

.my-courses-modern .my-course-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    border: 1px solid #E2E8F0;
    padding: 4px 10px;
    border-radius: 8px;
}

.my-courses-modern .my-course-rating i {
    color: #fbbf24;
}

.my-courses-modern .my-course-progress span {
    font-size: 13px;
    color: #64748B;
}

.my-courses-modern .my-course-card-content .theme_progressBar {
    height: 8px;
    border-radius: 999px;
    background: #E2E8F0;
}

.my-courses-modern .my-course-card-content .progress-bar {
    background: #1a1a1a;
    border-radius: 999px;
}

.my-courses-modern .my-course-meta {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    color: #64748B;
}

.my-courses-modern .my-course-meta span,
.my-courses-modern .my-course-meta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.my-courses-modern .my-course-meta a.cpd:hover {
    color: #2563EB;
}

.my-courses-modern .my-course-continue-btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #2563EB;
}

.my-courses-modern .my-course-card-link:hover .my-course-continue-btn {
    text-decoration: underline;
}

/* Empty state */
.my-courses-modern .my-courses-empty {
    text-align: center;
    padding: 80px 24px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.my-courses-modern .my-courses-empty p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 18px;
    color: #64748B;
    margin: 0;
}

/* Legacy: mantener couse_wizged/quiz_wizged por si otros componentes los usan */
.dashboard_main_wrapper .main_content_iner .my_courses_container .short_select h5 {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.dashboard_main_wrapper .main_content_iner .my_courses_container .theme_search_field .form-control {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
}

.dashboard_main_wrapper .main_content_iner .my_courses_container .theme_search_field .btn {
    border: 1px solid #E2E8F0;
    border-radius: 10px 0 0 10px;
    color: #64748B;
}

/* ========== Reward Point Page (/gamification/reward-point) ========== */
.dashboard_main_wrapper .main_content_iner.reward .reward-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard_main_wrapper .main_content_iner.reward .reward-card-points {
    gap: 20px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-card-points .img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-card-points .img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-card-points .content h4 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-card-points .content p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance {
    gap: 24px;
    flex-wrap: wrap;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-img {
    flex-shrink: 0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-img img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-content h3 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-content h3 span {
    color: var(--system_primery_color, #1a1a1a);
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-content > p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #64748B;
    margin-bottom: 16px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-content h4 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-blance-content .theme_btn {
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-badge .img {
    margin-bottom: 16px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-badge .img img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-badge h4 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-badge p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #64748B;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-badge .how_to_point {
    color: #2563EB;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table table {
    border-collapse: collapse;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table thead th {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table tbody td {
    padding: 16px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table tbody tr:last-child td {
    border-bottom: none;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table tbody p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table .dot-green {
    background: #22C55E;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-table .dot-orange {
    background: #F59E0B;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader h4 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader .nav-tabs {
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    flex-wrap: wrap;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader .nav-item {
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader .nav-link.nav-point {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    border: none;
    padding: 12px 16px;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader .nav-link.nav-point:hover {
    color: #1a1a1a;
    background: #F8FAFC;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader .nav-link.nav-point.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader-content {
    font-family: var(--font-body, 'Inter', sans-serif);
}

.dashboard_main_wrapper .main_content_iner.reward .reward-leader-content > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward .point_btn {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #2563EB;
}

/* Leaderboard content (AJAX loaded into #topLeaderboardBody) */
.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table {
    width: 100%;
    font-family: var(--font-body, 'Inter', sans-serif);
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table-body {
    max-height: 320px;
    overflow-y: auto;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-content > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-content > ul > li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-content > ul > li:last-child {
    border-bottom: none;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-profile .img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-profile .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-profile .content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-item .reward-leader-content {
    text-align: right;
    flex-shrink: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-item .reward-leader-content h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-item .reward-leader-content p {
    margin: 0;
    font-size: 12px;
    color: #64748B;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-position {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    background: #F1F5F9;
    flex-shrink: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-position.one {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    color: #fff;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-position.two {
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: #fff;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-position.three {
    background: linear-gradient(135deg, #b45309, #92400e);
    color: #fff;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .reward-leader-item .reward-leader-content.reward-click-btn {
    cursor: pointer;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table ul li {
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table ul li:last-child {
    border-bottom: none;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .point-table-inner .badge-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .actions {
    padding-top: 16px;
}

.dashboard_main_wrapper .main_content_iner.reward #topLeaderboardBody .theme_btn.small_btn4 {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-modal .modal-content {
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-modal .modal-body h4 {
    font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-modal .modal-body p {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #64748B;
}

.dashboard_main_wrapper .main_content_iner.reward .reward-modal .theme_btn {
    padding: 12px 24px;
    border-radius: 999px;
}
