/* assets/css/style.css */
body {
    background-color: #f8f9fa; /* Abu muda */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212529; /* Hitam */
}

/* Card Modern App Look */
.card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    background-color: #ffffff;
}

/* Button App Look */
.btn {
    border-radius: 12px;
    padding: 10px 20px;
    font-weight: 600;
}

.btn-primary {
    background-color: #0d6efd; /* Biru */
    border-color: #0d6efd;
}

/* Form inputs */
.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #0d6efd;
    background-color: #ffffff;
}

/* Bottom Navigation (Customer) */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bottom-nav a {
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
}

.bottom-nav a i {
    display: block;
    font-size: 24px;
    margin-bottom: 2px;
}

.bottom-nav a.active {
    color: #0d6efd;
}

/* Navbar */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Padding untuk konten agar tidak tertutup bottom nav */
.content-wrapper {
    padding-bottom: 80px;
    padding-top: 20px;
}