.product-search-container {
    max-width: 500px;
    margin: 0 auto 1rem auto;
    text-align: center;
}

#searchInput {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #0055a5;
    border-radius: 4px;
    background-color: white;
    margin-bottom: 0.5rem;
}

.product-search-container button {
    background-color: #0055a5;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

#category-list {
    max-width: 500px;
    margin: 0 auto;
}

#category-list .category-item {
    display: flex;
    align-items: center;
    border: 1px solid #0055a5;
    padding: 0.5rem;
    margin-bottom: -1px; /* 讓邊框重疊，避免雙重邊框 */
    cursor: pointer;
}

#category-list .category-item .icon {
    margin-right: 0.5rem;
    color: #0055a5;
}

#product-table-container {
    max-width: 500px;
    margin: 0 auto;
}
#category-title {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    
#product-table {
    width: 100%;
    border-collapse: collapse;
}

#product-table th,
#product-table td {
    border: 1px solid #0055a5;
    padding: 0.5rem;
    text-align: left;
}

#product-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}