/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
}

.confirm-delivery-error,
.confirm-delivery-success {
    margin: 20px 0;
    padding: 20px;
    width: fit-content;
}

.confirm-delivery-success {
    background-color: #dfefe5;
}

.confirm-delivery-error {
    background-color: #eddaca;
}

.gestion-entregas-tittle {
	text-align: center;
    margin-bottom: 40px;
}

/* Formulario de búsqueda */
.woocommerce-MyAccount-content form.search-form {
    width: 500px;
	margin: 50px 0;
}

.woocommerce-MyAccount-content form.search-form  .input-search {
    margin-bottom: 20px;
    border: 1px solid #aaa;
}

.woocommerce-MyAccount-content form.search-form .button-submit:hover {
    background-color: #fdf0e7;
    color: black;
}

/* Contenedor principal */
.picking-moves-conatiner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.picking-move {
    background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 0px;
    padding: 20px;
    width: calc(33.33% - 40px);
	min-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

/* Títulos */
.picking-title, .picking-lines-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.picking-destinatario {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Líneas de pedido */
.line-item {
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.line-product {
    font-size: 16px;
    color: #333;
}

.line-quantity, .line-delivered {
    font-size: 14px;
    color: #666;
}

.quantity-total, .quantity-done, .product-name {
    font-weight: bold;
}

/* Formulario */
.woocommerce-MyAccount-content form.line-form {
    margin: 0;
    margin-top: 10px;
    display: flex;
}

.woocommerce-MyAccount-content form.line-form .input-cantidad {
    width: 200px;
    margin-right: 15px;
    border: 1px solid #ddd;
    border-radius: 0px;
}

.woocommerce-MyAccount-content form.line-form .button-submit {
    width: 200px;
}

.woocommerce-MyAccount-content form.line-form .button-submit:hover {
    background-color: #fdf0e7;
    color: black;
}

@media (max-width: 1024px) {
	.woocommerce-MyAccount-content form.search-form  {
		width: 100%;
    	margin: 0;
    	margin-bottom: 30px;
	}
}
