/**
 * Estilos específicos para la página de publicación de espacios
 */

/* Pestañas del formulario */
#formTabs .nav-link {
    position: relative;
    padding: 0.75rem 1rem;
}

#formTabs .nav-link.active {
    font-weight: 500;
}

#formTabsContent {
    background-color: #fff;
    min-height: 350px;
}

/* Mapa */
#mapa-busqueda {
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#mapa-busqueda:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/* Vista previa */
#vista-previa-card {
    transition: all 0.3s ease;
    transform: scale(0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

#vista-previa-card:hover {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#vista-previa-img {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Validación visual */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Campos requeridos */
label.required:after {
    content: " *";
    color: #dc3545;
}

/* Animaciones */
.tab-pane.fade {
    transition: opacity 0.15s linear;
}

.tab-pane.fade.show {
    opacity: 1;
}

/* Ajustes responsive */
@media (max-width: 992px) {
    .sticky-top {
        position: relative;
        top: 0 !important;
    }

    #formTabsContent {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    #formTabs .nav-link {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    #formTabs .nav-link i {
        display: none;
    }
}
