/*
 * Tourismium admin footer styles. Pareja del partner JS en
 * /shared/js/tourismium-footer.js. Slim, alineado con el resto del
 * chrome admin (border-top + neutro). El language switcher emitido
 * por I18nManager.createLanguageSelector hereda estos estilos.
 */

.tm-footer {
    border-top: 1px solid #e5e7eb;
    background: #fff;
    margin-top: auto;
}

.tm-footer-content {
    max-width: 80rem; /* matches Tailwind max-w-7xl */
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    color: #6b7280;
}

.tm-footer-copyright {
    margin: 0;
}

.tm-footer-lang select {
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.8125rem;
    color: #374151;
    cursor: pointer;
}
.tm-footer-lang select:hover { border-color: #9ca3af; }
.tm-footer-lang select:focus { outline: none; border-color: #2563eb; box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1); }

@media (max-width: 640px) {
    .tm-footer-content {
        flex-direction: column;
        text-align: center;
    }
}
