#recycling-header {
    background-color: #f8f9fa;
    color: #495057;
    padding: 1rem;
    text-align: center;
    border-top: dashed 1px #000;
}

.container {
    margin-top: 2rem;
}

.card-body {
    line-height: 1.6;
}
#equipmentTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    align-items: center;
}
  
  /* Style the select field */
  #equipmentTable select {
    width: 100%; /* Adjust the width as needed */
    padding: 8px; /* Add padding to match the input fields */
    border: 1px solid #ddd; /* Add a border */
    border-radius: 4px; /* Add border-radius for rounded corners */
    box-sizing: border-box; /* Include padding and border in the total width */
}

/* Optional: Style the dropdown arrow */
#equipmentTable select::after {
    content: '\25BC'; /* Unicode character for a downward arrow */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

#equipmentTable input[type='number'] {
    width: 100%; /* Adjust the width as needed */
    padding: 8px; /* Add padding to match the input fields */
    border: 1px solid #ddd; /* Add a border */
    border-radius: 4px; /* Add border-radius for rounded corners */
    box-sizing: border-box; /* Include padding and border in the total width */
}

#equipmentTable th, #equipmentTable td {
    border: 1px solid #ddd;
    padding: 8px;
}

#equipmentTable th {
    background-color: #f2f2f2;
}


#addNewBtn {
    margin-top: 10px;
    background-color: #f2f2f2;
    color: #525a63;
}
