﻿input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.contenedor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Ajusta separación entre escudos */
    margin-top: 20px;
}

.logo-escudo {
    height: 200px;
    width: auto;
    max-width: 100%; /* Anula límites de Bootstrap */
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .logo-escudo:hover {
        transform: scale(1.1);
    }

/* Responsive */
@media (max-width: 576px) {
    .logo-escudo {
        height: 70px;
        gap: 20px;
    }
}

.sin-subrayado {
    text-decoration: none !important; /* Para eliminar el subrayado */
}

.previewDiv {
    width: 100%;
    height: 55vh;
    padding: 5px;
    background: rgba(211,211,211,0.05);
    padding: 20px 0;
    border-radius: 3px;
}

.preview {
    width: 50%;
    height: 100%;
}

.filePreviewed {
    border-radius: 3px;
    box-shadow: rgba(10,10,10,0.15) -5px 3px 15px 6px;
}
