/* General body and layout settings */
body {
    font-family: Arial, sans-serif;
    background-color: #f7d2ab;
}

header, footer {
    text-align: center;
    padding: 20px;
    background-color: #f7d2ab;
}

/* Product listing styles */
.product-grid {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.product-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-image {
    width: 100px;
    height: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(2); /* Enlarge images on hover */
}

.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.description {
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing {
    display: flex;
    justify-content: space-around;
}

.carton, .pallet {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.carton span, .pallet span {
    margin-right: 10px;
}

/* Input and button enhancements */
input[type="number"], input[type="date"], input[type="submit"], button {
    padding: 10px;
    margin-right: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Specific styles for submit button */
input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    display: block;  /* Make sure it's a block to handle margins correctly */
    width: auto;  /* Auto width to fit content */
    margin: 20px auto;  /* Center the button horizontally and add vertical space */
    padding: 12px 24px;  /* Increase padding for better clickability */
    font-size: 16px;  /* Increase font size for better visibility */
}

input[type="submit"]:hover {
    background-color: #45a049;  /* Slightly darker on hover for feedback */
}

/* Cart details styling */
.cart-details {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #8af17a;
}
