body {
    background: #f5f5f5;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

html, body {
    height: 100%;
    margin: 0;
}

/* ini container utama semua halaman */
.main-container {
    flex: 1;  /* otomatis dorong footer ke bawah */
}

/* Navbar Atas */
.navbar-custom {
    background-color: #0a3d62;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    color: #fff !important;
    font-weight: 500;
}

/* CARD NOTIFIKASI */
.notif-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.notif-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.notif-icon {
    min-width: 45px;
    height: 45px;
    background: #0a3d62;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.notif-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.notif-time {
    font-size: 12px;
    color: #7f8c8d;
}

/* NAVBAR BOTTOM */
.navbar-bottom {
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    padding: 6px 0;
}
.navbar-bottom .nav-link {
    font-size: 13px;
    color: #555;
}
.navbar-bottom .active {
    color: #0a3d62 !important;
    font-weight: 600;
}

.icon-badge {
    position: relative;
    display: inline-block;
}
.icon-badge .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge1 {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.icon-badge1 i {
    position: relative;
}

.icon-badge1 .badge1 {
    position: absolute;
    top: 2px;
    right: 74px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.icon-badge-container {
    position: relative;
    display: inline-block;
    font-size: 14px;
}

.icon-badge-container .badge2 {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}