/*
 * Styles for the DTF Calculator (Front-end)
 */
#dtf-calculator-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f8f8f8;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 20px auto;
}

#dtf-calculator-container h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.dtf-field {
    margin-bottom: 15px;
}

.dtf-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.dtf-field input[type="file"],
.dtf-field select {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect the total width */
}

.dtf-results {
    background-color: #fff;
    border: 1px dashed #ccc;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.dtf-results p {
    margin: 5px 0;
    font-size: 1.1em;
}

.dtf-results p span {
    font-weight: bold;
    color: #0073aa; /* A typical blue color from WordPress admin style */
}

#dtf-total-price {
    font-size: 1.5em;
    color: #21759b;
}

/* Add to Cart button styles */
#dtf-add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #007cba;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 20px;
    cursor: pointer;
}

#dtf-add-to-cart:hover {
    background-color: #006799;
}

/*
 * Styles for the Admin Panel (optional, but a good practice)
 */
.button.button-danger {
    background: #d54e21;
    border-color: #d54e21;
    color: #fff;
    box-shadow: none;
    text-shadow: none;
}
.button.button-danger:hover {
    background: #dc3232;
    border-color: #dc3232;
    color: #fff;
}
/* Oculta el botón de "Añadir al carrito" por defecto de WooCommerce en el shortcode de la calculadora */
.dtf-calculator-product-summary form.cart {
    display: none;
}