/* alat-kesehatan.css - Custom CSS for Medical Equipment Page */

/* Product Filter Section */
.product-filter {
    background: #1A76D1;
    padding: 40px 0;
    margin-bottom: 40px;
    color: #fff;
}

.product-filter h3 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.filter-group {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.filter-group select, 
.filter-group input {
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 118, 209, 0.3);
}

.input-group-append button {
    background-color: #1156a3;
    border-color: #1156a3;
    color: white;
}

.input-group-append button:hover {
    background-color: #0d4790;
}

/* Products Section */
.product-grid .card {
    border: 1px solid #e0e0e0;
    transition: transform 0.2s;
}
.product-grid .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.product-grid .card-title {
    font-size: 16px;
    font-weight: 600;
}
.product-grid .card-text {
    font-size: 14px;
}

/* Pagination Section */

