/* Estilos del botón de calculadora */
.calculadora-btn {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background-color: #0099de;
    color: white;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.calculadora-btn i {
    margin-right: 10px;
}

.calculadora-btn:hover {
    background-color: #007bbf;
    color: white;
    text-decoration: none;
}

/* Estilos del modal/dialogo */
#calculadoraModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.calculadora-content {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.calculadora-content h2 {
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

.calculadora-content p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
    text-align: left;
}

.calculadora-content label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    color: #333;
}

.calculadora-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.calculadora-content button {
    background-color: #0099de;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.calculadora-content button:hover {
    background-color: #007bbf;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
}

/* Estilo de los resultados */
#resultado {
    margin-top: 20px;
    text-align: left;
    font-size: 16px;
}

#resultado div {
    margin-bottom: 10px;
}

.resultado-cajas,
.resultado-precio {
    font-weight: bold;
    color: #0099de;
    font-size: 18px;
}
/* Estilos para el toast de SweetAlert2 */
.swal2-toast {
    background: #fff !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
}

.swal2-toast .swal2-title {
    font-size: 16px !important;
    color: #333 !important;
}

.swal2-toast .swal2-timer-progress-bar {
    background: #4CAF50 !important;
}

/* Resto de tus estilos existentes */
