/* ===================================
   LTMC RESPONSIVE
=================================== */

/* LARGE TABLET */

@media (max-width: 991px) {
    .content-wrapper {
        padding: 18px;
    }

    .page-title {
        font-size: 24px;
    }
}

/* TABLET */

@media (max-width: 768px) {
    .ltmc-navbar .container-fluid {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .navbar-user {
        width: 100%;
        justify-content: space-between;
        font-size: 13px;
    }

    .sidebar {
        min-height: auto;
    }

    .sidebar-brand {
        display: none;
    }

    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        gap: 6px;
        padding: 10px;
    }

    .sidebar-menu a {
        white-space: nowrap;
        margin-bottom: 0;
    }

    .content-wrapper {
        padding: 15px;
    }

    .card-dashboard {
        margin-bottom: 15px;
    }

    .card-number {
        font-size: 28px;
    }

    .table {
        min-width: 700px;
    }
}

/* MOBILE */

@media (max-width: 576px) {
    .page-title {
        font-size: 22px;
    }

    .page-subtitle {
        font-size: 13px;
    }

    .btn {
        font-size: 12px;
        padding: 7px 10px;
    }

    .form-control,
    .form-select {
        font-size: 13px;
    }

    .table thead th,
    .table tbody td {
        font-size: 12px;
    }
}