.sidebar-header i { font-size: 48px; margin-bottom: 10px; } .sidebar-menu { padding: 20px 0; } .sidebar-menu a { display: block; padding: 15px 25px; color: rgba(255,255,255,0.8); text-decoration: none; transition: all 0.3s; border-left: 4px solid transparent; cursor: pointer; } .sidebar-menu a:hover { background: rgba(255,255,255,0.15); color: white; border-left-color: white; padding-left: 35px; } .sidebar-menu a.active { background: rgba(255,255,255,0.2); color: white; border-left-color: white; } .sidebar-menu i { width: 25px; margin-right: 10px; } /* MOBILE MENU BUTTON */ .mobile-menu-btn { display: none; position: fixed; top: 15px; left: 15px; z-index: 1002; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border: none; width: 50px; height: 50px; border-radius: 10px; font-size: 24px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); } .mobile-menu-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 1001; } /* MAIN CONTENT */ .content { margin-left: 260px; padding: 25px; transition: all 0.3s ease; } /* CARDS */ .card { border: none; border-radius: 12px; box-shadow: 0 3px 15px rgba(0,0,0,0.08); margin-bottom: 25px; transition: transform 0.3s; } .card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0,0,0,0.12); } .card-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; border-radius: 12px 12px 0 0 !important; padding: 15px 20px; } .btn-primary { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: none; padding: 10px 20px; border-radius: 8px; color: white; text-decoration: none; display: inline-block; cursor: pointer; transition: all 0.3s; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4); } /* STAT CARDS */ .stat-card { padding: 20px; border-radius: 12px; color: white; height: 100%; } /* GRID SYSTEM */ .row { display: flex; flex-wrap: wrap; margin-right: -10px; margin-left: -10px; } [class*="col-"] { padding-right: 10px; padding-left: 10px; box-sizing: border-box; } .col-md-3 { width: 25%; } .col-md-4 { width: 33.33%; } .col-md-6 { width: 50%; } .col-md-8 { width: 66.67%; } .col-12 { width: 100%; } /* TABLES */ .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; } table { width: 100%; border-collapse: collapse; min-width: 600px; } th { background: #f8fafc; padding: 12px; text-align: left; font-weight: 600; color: #2c3e50; border-bottom: 2px solid #dee2e6; } td { padding: 12px; border-bottom: 1px solid #e0e0e0; } /* PROGRESS BAR */ .progress { height: 30px; background: #f0f0f0; border-radius: 15px; overflow: hidden; margin: 15px 0; } .progress-bar { height: 100%; background: linear-gradient(90deg, #28a745, #20c997); color: white; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; } /* FORMS */ .form-control, .form-select { width: 100%; padding: 10px 12px; border: 1px solid #ced4da; border-radius: 6px; margin-bottom: 10px; font-size: 16px; /* Mencegah zoom di HP */ } .form-label { font-weight: 500; margin-bottom: 5px; display: block; } .input-group { display: flex; gap: 10px; } .input-group .form-control { flex: 1; margin-bottom: 0; } /* BADGES */ .badge { padding: 5px 10px; border-radius: 20px; font-size: 12px; display: inline-block; } .bg-success { background: #28a745; color: white; } .bg-danger { background: #dc3545; color: white; } .bg-info { background: #17a2b8; color: white; } .bg-primary { background: #007bff; color: white; } .text-success { color: #28a745 !important; } .text-danger { color: #dc3545 !important; } .fw-bold { font-weight: 700; } .text-muted { color: #6c757d; } .text-center { text-align: center; } /* UTILITY */ .d-flex { display: flex; } .align-items-center { align-items: center; } .justify-content-between { justify-content: space-between; } .flex-wrap { flex-wrap: wrap; } .gap-2 { gap: 10px; } .gap-3 { gap: 15px; } .me-1 { margin-right: 5px; } .me-2 { margin-right: 10px; } .me-3 { margin-right: 15px; } .mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 5px; } .mb-2 { margin-bottom: 10px; } .mb-3 { margin-bottom: 15px; } .mb-4 { margin-bottom: 20px; } .mt-1 { margin-top: 5px; } .mt-2 { margin-top: 10px; } .mt-3 { margin-top: 15px; } .p-3 { padding: 15px; } .p-4 { padding: 20px; } .p-5 { padding: 30px; } .py-2 { padding-top: 10px; padding-bottom: 10px; } .py-3 { padding-top: 15px; padding-bottom: 15px; } .w-100 { width: 100%; } hr { margin: 15px 0; border: 0; border-top: 1px solid rgba(0,0,0,0.1); } .border-bottom { border-bottom: 1px solid #dee2e6; } .alert { padding: 15px; border-radius: 8px; margin-bottom: 20px; } .alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; } .alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; } /* MOBILE STYLES */ @media (max-width: 768px) { .mobile-menu-btn { display: block; } .sidebar { transform: translateX(-100%); width: 280px; } .sidebar.active { transform: translateX(0); } .mobile-menu-overlay.active { display: block; } .content { margin-left: 0; padding: 70px 15px 20px 15px; } .col-md-3, .col-md-4, .col-md-6, .col-md-8 { width: 100%; margin-bottom: 15px; } .d-flex.justify-content-between { flex-direction: column; gap: 15px; } .btn-primary { width: 100%; text-align: center; } .stat-card .d-flex { flex-direction: column; text-align: center; } .stat-card .me-3 { margin-right: 0 !important; margin-bottom: 10px; } .input-group { flex-direction: column; } .input-group .btn { width: 100%; } /* Make cards stack nicely */ .row { margin-right: -5px; margin-left: -5px; } [class*="col-"] { padding-right: 5px; padding-left: 5px; } } /* Small phones */ @media (max-width: 480px) { .content { padding: 70px 10px 20px 10px; } .card-body { padding: 12px; } h3 { font-size: 20px; } .stat-card h4 { font-size: 18px; } }

APLIKASI KEUANGAN


Username: admin | Password: admin123