.blue-link {
    color: blue;
    text-decoration: underline; /* Optional: Makes the link look like a typical hyperlink */
}

.blue-link:hover {
    color: darkblue; /* Optional: Changes color on hover */
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.login-logo img {
    height: 130px;
}

.mds-logo img {
    height: 52px;
}

@media screen and (max-width: 768px) {
    .login-logo img {
        max-height: 110px;
    }

    .mds-logo.mt-10 {
        margin-top: 1.5rem;
    }

    .mds-logo img {
        height: 44px;
    }
}

/* leaderboard css */

.leaderboard-card{
    background:#fff;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    padding:24px;
}

.leaderboard-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.leaderboard-header h2{
    font-size:30px;
    color:#1d2433;
    margin-bottom:4px;
}

.leaderboard-header p{
    color:#8d96a7;
    font-size:15px;
}

.last-loaded{
    color:#9ca3af;
    font-size:14px;
}

.leaderboard-table{
    width:100%;
    border-collapse:collapse;
}

.leaderboard-table th,
.leaderboard-table td {
    width:33%;
}

.leaderboard-table thead th{
    text-align:left;
    padding:14px 10px;
    color:#4b5563;
    font-size:15px;
    font-weight:600;
    border-bottom:1px solid #e5e7eb;
}

.leaderboard-table tbody td{
    padding:18px 10px;
    border-bottom:1px solid #edf0f2;
    font-size:16px;
    color:#222;
}

.amount{
    text-align:right;
}

.rank-badge{
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#ececec;
    color:#4b5563;
    font-weight:700;
    font-size:13px;
}

.gold{
    background:#ffc928;
    color:#fff;
}

.silver{
    background:#bcbcbc;
    color:#fff;
}

.bronze{
    background:#d78934;
    color:#fff;
}

/* Highlight Top 3 */

.top-1{
    background:#fff9ea;
}

.top-2{
    background:#fffdf4;
}

.top-3{
    background:#fffaf0;
}

tbody tr{
    transition:.2s;
}

tbody tr:hover{
    background:#f7fafc;
}

/* training-section */

.training-section {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 20px;
}

.training-image {
    width: 40%;
}

.training-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.training-content {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.training-text {
    font-size: 18px;
    line-height: 1.5;
    color: #222;
    max-width: 700px;
    margin-bottom: 35px;
}

.training-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.training-buttons .btn {
    display: inline-block;
    background: #ef2d2d;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.btn:hover {
    background: #d91f1f;
}

@media (max-width: 768px) {

    .training-section {
        flex-direction: column;
    }

    .leaderboard-header h2{
        font-size:17px;
    }

    .leaderboard-header p, .last-loaded{
        font-size:12px;
    }

    .training-image,
    .training-content {
        width: 100%;
    }

    .training-content {
        padding: 25px;
    }

    .training-text {
        font-size: 15px;
    }

    .training-buttons .btn {
        font-size: 13px;
    }

    .leaderboard-table tbody td {
        font-size: 13px;
    }

    .rank-badge {
        width: 28px;
        height: 28px;
    }
}

/* sticky-refresh-banner */
/*
.sticky-refresh-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    min-height: 48px;

    display:flex;
    align-items:center;
    gap:10px;

    padding:0 18px;
    background:#fff3cd;
    color:#664d03;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    justify-content: center;
}

.sidebar.sidebar-fixed{
    top:48px;
    height:calc(100vh - 48px);
}

.header.header-sticky{
    top:48px;
    padding-top: 15px;
}

.body.flex-grow-1 {
    padding-top: 48px;
}

.sticky-refresh-banner strong {
    font-weight: 700;
}

.sticky-refresh-banner .banner-icon {
    font-size: 18px;
}

.sticky-refresh-banner kbd {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 4px;
    padding: 2px 6px;
    color: #fff;
    font-size: 12px;
}

.banner-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #5c3a00;
    font-size: 26px;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s;
}

.banner-close:hover {
    opacity: 1;
}

.sticky-refresh-banner kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 2px 8px;

    color: #5c3a00;
    background: linear-gradient(#ffffff, #f7f2e7);
    border: 1px solid #c9a24f;
    border-bottom: 3px solid #9d7724;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;
    font-family: inherit;
}

@media (max-width: 768px) {

    .sticky-refresh-banner {
        justify-content: flex-start;
        align-items: flex-start;
        gap: 6px;
        padding: 8px 12px;
        font-size: 13px;
        line-height: 1.4;
        min-height: 70px;
    }

    .sticky-refresh-banner .banner-icon {
        font-size: 16px;
        margin-top: 2px;
    }

    .sticky-refresh-banner kbd {
        min-width: auto;
        padding: 2px 6px;
        font-size: 11px;
    }

    .sidebar.sidebar-fixed {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .header.header-sticky {
        top: 70px;
        padding-top: 10px;
    }

    .body.flex-grow-1 {
        padding-top: 70px;
    }
}
*/