/* ============================================
   CUSTOM STYLE JASTIP APP
   ============================================ */

/* Global */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card */
.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-3px);
}

/* Badge */
.badge {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Product Card */
.product-card {
    transition: transform 0.2s;
}
.product-card:hover {
    transform: scale(1.02);
}

/* Button */
.btn {
    border-radius: 8px;
    font-weight: 500;
}

/* Table */
.table th {
    background-color: #f1f3f5;
    font-weight: 600;
}

/* Form */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

/* Alert */
.alert {
    border-radius: 10px;
}

/* Utility */
.min-vh-100 {
    min-height: 100vh;
}

/* Status Colors */
.status-pending { color: #ffc107; }
.status-paid { color: #0dcaf0; }
.status-shipped { color: #0d6efd; }
.status-done { color: #198754; }
.status-cancelled { color: #dc3545; }

/* Empty State */
.empty-state {
    padding: 60px 20px;
    text-align: center;
}
.empty-state i {
    font-size: 4rem;
    color: #dee2e6;
}

/* Footer */
.footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .card-body {
        padding: 1.25rem;
    }
    .table-responsive {
        font-size: 0.85rem;
    }
}