.product-list-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-filter {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.product-filter select, .product-filter input {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 200px;
}

.product-filter .search-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-filter .search-btn:hover {
    background-color: #003d7a;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-table th {
    background-color: #0056b3;
    color: white;
    text-align: left;
    padding: 15px;
    font-weight: 500;
}

.product-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.product-table tr:hover {
    background-color: #f5f9ff;
}

.stock-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.in-stock {
    background-color: #e6f7e9;
    color: #1e8e3e;
}

.low-stock {
    background-color: #fef7e0;
    color: #f9ab00;
}

.out-stock {
    background-color: #fce8e8;
    color: #d93025;
}

.contact-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background-color: #003d7a;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a.active {
    background-color: #0056b3;
    color: white;
    border-color: #0056b3;
}

.pagination a:hover:not(.active) {
    background-color: #f1f1f1;
}

.page-header {
    background-color: #0056b3;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
}

.page-header p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.9;
} 