body {
    background-color: #f8f9fa;
    /* Fondo suave */
}

.header-app {
    background-color: #fff;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    /* Fija el encabezado para una experiencia de app más fluida */
    position: sticky;
    top: 0;
    z-index: 10;
}

.main-content {
    /* Ajusta el padding-top para que no se superponga con el nuevo encabezado */
    padding-top: 15px !important;
    padding-bottom: 90px;
    /* Espacio para la barra inferior */
}

.card-mandadito {
    background-color: #fff;
    padding: 1rem;
    border-radius: 0;
    /* Lo hacemos a pantalla completa */
    box-shadow: none;
}

.alert-custom {
    background-color: #ffc107;
    /* Amarillo */
    color: #343a40;
    /* Texto oscuro */
    border-radius: 8px;
    font-size: 0.9rem;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
}

.field-box {
    border: 1px solid #ffc107;
    /* Borde amarillo */
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.field-box.textarea {
    align-items: flex-start;
}

.field-box input,
.field-box textarea {
    border: none;
    padding: 0;
    outline: none;
    box-shadow: none !important;
    resize: none;
}

.field-box textarea {
    min-height: 80px;
}

.field-box .icon {
    color: #ffc107;
    /* Iconos en amarillo */
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.field-box .price-icon {
    color: #dc3545;
    /* Icono de dólar en rojo */
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.section-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffc107;
    margin-right: 0.5rem;
}

.image-placeholder-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    font-size: 0.9rem;
    cursor: pointer;
}

.image-placeholder-box i {
    font-size: 2rem;
    color: #adb5bd;
}

.nav-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}
