/* Custom Styles untuk PantauHarga Jatim */

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

/* Card Harga */
.card {
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
}

/* Badge */
.badge {
    font-weight: 500;
}

/* Harga */
.text-primary {
    font-weight: 600;
}

/* Form */
.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Table */
.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

/* Footer */
footer {
    margin-top: auto;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .card-title {
        font-size: 0.9rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
}
