
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f0f2f5;
    padding: 20px;
}

form {
    background: #ffffff;
    padding: 25px;
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input[type="text"],
input[type="number"],
input[type="url"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

input:focus {
    border-color: #1e90ff;
    outline: none;
    box-shadow: 0 0 5px rgba(30,144,255,0.4);
}


input[type="button"] {
    background: #1e90ff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

input[type="button"]:hover {
    background: #0b6acd;
}


#Tablaproductos {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
}

#Tablaproductos thead {
    background: #1e90ff;
    color: white;
    font-weight: bold;
}

#Tablaproductos th, 
#Tablaproductos td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

#Tablaproductos tbody tr:hover {
    background: #f1f7ff;
}


#TotalPagar {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: block;
    padding: 15px;
    text-align: right;
}


img{
    width: 60px;
}