/* Overall container */
#bin-management {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form styles */
form {
    margin-bottom: 20px;
}

select, button {
    padding: 8px 12px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 100%;
    display: block;
}

select:focus, input:focus, button:focus {
    outline: none;
    border-color: #4CAF50;
}

/* Styling for the bin details form */
#bin-details-form {
    margin-top: 20px;
}

#product-details {
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
}

input[type="number"] {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="number"]:focus {
    border-color: #4CAF50;
}

/* Responsive styles */
@media (max-width: 768px) {
    #bin-management {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
    }

    select, button, input[type="number"] {
        width: 100%;
        font-size: 14px;
    }

    table th, table td {
        font-size: 14px;
    }
}

/* Alert styles for messages */
.alert {
    background-color: #f44336;
    color: white;
    padding: 10px;
    margin: 20px 0;
    border-radius: 4px;
    display: none;
}

.alert.success {
    background-color: #4CAF50;
}

.alert.error {
    background-color: #f44336;
}
