/* ============================================================
   UStudy admin — Jazzmin custom CSS (AdminLTE v4 / Bootstrap 5)
   ============================================================ */

/* ---------- 1. ОГРОМНЫЙ ЛОГОТИП И УДАЛЕНИЕ ТЕКСТА ---------- */

/* Увеличиваем шапку сайдбара и центрируем содержимое */
.app-sidebar .brand-link {
    height: 120px !important; /* Увеличиваем высоту шапки */
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
    text-decoration: none !important;
}

/* Перебиваем дефолтные стили AdminLTE для картинки */
.app-sidebar .brand-link .brand-image {
    float: none !important;
    max-height: 90px !important; /* Делаем логотип огромным */
    width: 50px !important;
    margin: 0 !important;
    line-height: normal !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

/* Полностью убиваем текст названия ("Администрирование django" и прочее) */
.app-sidebar .brand-link .brand-text {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Крупный логотип на странице входа */
.login-logo img {
    max-height: 150px !important;
    width: auto !important;
    margin-bottom: 20px !important;
}

/* ---------- 2. УДАЛЕНИЕ "ПОСЛЕДНИХ ДЕЙСТВИЙ" И РАСШИРЕНИЕ ---------- */

/* Скрываем сам блок последних действий */
#recent-actions-module {
    display: none !important;
}

/* Скрываем правую колонку (в которой лежал блок действий) */
.app-main .container-fluid > .row > .col-lg-3,
.app-main .container-fluid > .row > .col-md-3 {
    display: none !important;
}

/* Растягиваем левую колонку с приложениями на все 100% экрана */
.app-main .container-fluid > .row > .col-lg-9,
.app-main .container-fluid > .row > .col-md-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
}