/* Base */
body { margin: 0; padding: 0; font-family: 'Segoe UI', sans-serif; background-color: #f7f9fc; color: #333; }
.container { padding: 0 16px; }
.mt-2 { margin-top: 16px; }
.pb-20 { padding-bottom: 80px; }

/* Header */
.header { background: #007bff; color: white; padding: 16px; display: flex; justify-content: space-between; align-items: center; border-radius: 0 0 16px 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.user-info p { margin: 0; font-size: 1.1rem; }
.user-info small { opacity: 0.8; }
.logout-btn { color: white; text-decoration: none; }

/* Cards */
.card-summary { background: white; border-radius: 12px; padding: 16px; display: flex; justify-content: space-around; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.card-summary h3 { margin: 0; color: #007bff; }
.card-summary small { color: #666; font-size: 0.85rem; }

/* List */
.showroom-card { background: white; border-radius: 12px; padding: 16px; margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; color: inherit; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: transform 0.1s; }
.showroom-card:active { transform: scale(0.98); }
.showroom-info h5 { margin: 0 0 4px 0; font-size: 1rem; }
.showroom-info p { margin: 0; color: #666; font-size: 0.85rem; }

/* Search */
.search-input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 16px; box-sizing: border-box; font-size: 1rem; }

/* Badges */
.badge { padding: 4px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.status-belum { background: #eee; color: #666; }
.status-pending { background: #fff3cd; color: #856404; }
.status-done { background: #d4edda; color: #155724; }

/* Buttons */
.btn-action { display: block; width: 100%; padding: 14px; background: #007bff; color: white; text-align: center; border-radius: 12px; font-weight: 600; font-size: 1.1rem; border: none; cursor: pointer; text-decoration: none; }
.btn-action:disabled { background: #ccc; }

/* Bottom Nav */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; background: white; display: flex; border-top: 1px solid #eee; padding: 8px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); z-index: 1000; }
.nav-item { flex: 1; text-align: center; text-decoration: none; color: #999; font-size: 0.75rem; display: flex; flex-direction: column; align-items: center; }
.nav-item.active { color: #007bff; }
.nav-item i { font-size: 24px; margin-bottom: 2px; }

/* Detail Page */
.detail-header { background: white; padding: 16px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 16px; }
.info-row { display: flex; margin-bottom: 8px; }
.info-label { width: 100px; color: #666; font-size: 0.9rem; }
.info-val { font-weight: 500; }

/* Maps */
#map { height: 200px; background: #eee; border-radius: 12px; margin-bottom: 16px; }

/* Forms */
.form-section { background: white; padding: 16px; margin-top: 16px; border-radius: 12px; }
.form-group { margin-bottom: 16px; }
.hidden { display: none; }
