html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.start-card {
    border-left: 4px solid;
    transition: transform 0.2s;
}

    .start-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .start-card.warning {
        border-color: #ffc107;
    }

    .start-card.danger {
        border-color: #dc3545;
    }

    .start-card.info {
        border-color: #0dcaf0;
    }

    .start-card.success {
        border-color: #198754;
    }

.bottom-card.warning {
    border-color: #ffc107;
}

.bottom-card {
    border-bottom: 4px solid;
    transition: transform 0.2s;
}

    .bottom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .bottom-card.danger {
        border-color: #dc3545;
    }

    .bottom-card.info {
        border-color: #0dcaf0;
    }

    .bottom-card.success {
        border-color: #198754;
    }
/* Default nav link */
.navbar-nav .nav-link {
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

    /* Hover effect */
    .navbar-nav .nav-link:hover {
        border-bottom: 3px solid #28a745; /* Bootstrap success green */
        color: #28a745 !important;
    }

    /* ACTIVE link */
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:focus {
        border-bottom: 3px solid #28a745 !important;
        color: #28a745 !important;
        font-weight: 600;
    }

@media (max-width: 576px) {
    .nav-dual-text {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }

        .nav-dual-text small {
            margin-left: 4px;
            line-height: 1;
        }
}

/* Desktop: English top, Gujarati below */
@media (min-width: 577px) {
    .nav-dual-text {
        display: flex;
        flex-direction: column;
        line-height: 1.5;
    }
}
.dropdown-toggle::after {
    border-top: 0 !important;
}