body {
    background: #f8f9fa;
    padding-bottom: 70px;
}

/* HEADER */
.header-app {
    background: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

/* FOOTER MENU */
.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 999;
}

.footer-item {
    text-align: center;
    font-size: 12px;
    color: #777;
}

.footer-item ion-icon {
    display: block;
    margin: auto;
    font-size: 24px;
}

.footer-item.active {
    color: #0aa87e;
    font-weight: bold;
}


/* === BOTTOM SHEET MODAL SHOPEE STYLE === */

.modal.bottom-sheet .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.modal.bottom-sheet.show .modal-dialog {
    transform: translateY(0);
}

.modal.bottom-sheet .modal-content {
    border-radius: 10px 10px 0 0;
    padding-bottom: 0px !important;
}

.modal-drag {
    width: 50px;
    height: 5px;
    background: #ccc;
    border-radius: 5px;
    margin: 10px auto;
}

.dark-mode {
    background: #1c1c1c !important;
    color: white !important;
}

.dark-mode .card {
    background: #333 !important;
    color: white !important;
}

.dark-mode .offcanvas {
    background: #222;
    color: white;
}

.list-group-item ion-icon {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.list-group-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* animasi sidebar  */
/* === SIDEBAR ANIMATION: SLIDE IN FROM LEFT === */

/* posisi sidebar awal */
.offcanvas-start {
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* saat sidebar muncul */
.offcanvas-start.show {
    transform: translateX(0);
}

/* animasi fade pada backdrop */
.offcanvas-backdrop {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.offcanvas-backdrop.show {
    opacity: 0.45;
}

/* animasi sidebar  */

/* animasi close sidebar */
/* --- ANIMASI SLIDE IN / OUT SIDEBAR --- */

.offcanvas-start {
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Saat sidebar tampil → slide in */
.offcanvas-start.showing,
.offcanvas-start.show {
    transform: translateX(0);
}

/* Saat sidebar ditutup → slide out */
.offcanvas-start.hiding {
    transform: translateX(-100%);
}

/* Backdrop animation */
.offcanvas-backdrop {
    opacity: 0;
    transition: opacity 0.35s ease;
}
.offcanvas-backdrop.show {
    opacity: 0.45;
}

/* animasi close sidebar */

#togglePassword ion-icon {
    font-size: 20px;
}
