#mi-lista-productos {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: auto;
    text-align: center;
    font-family: Arial, sans-serif;
}

#mi-lista-productos h3 {
    color: #333;
    margin-bottom: 15px;
}

.item {
    display: block;
    background: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.item:hover {
    background: #ddd;
}

#calcular-total {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

#calcular-total:hover {
    background: #218838;
}

.extra-options {
    margin-top: 15px;
    text-align: left;
}

.extra-options label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.extra-options select {
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

p#total-container {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
    margin-top: 15px;
}
