/* Estilos para centrado completo de la vista Selfie */
body {
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

#main-view {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh;
}

/* Contenedor con Bootstrap para responsive */
.text-center {
    max-width: 600px;
    padding: 2rem;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    body {
        height: auto !important;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    #main-view {
        height: auto !important;
        min-height: 100vh;
        justify-content: flex-start !important;
    }

    .text-center {
        padding: 1rem;
        max-width: 98%;
    }
}

.fw500 {
    font-weight: 500 !important;
}

[v-cloak] {
    display: none !important;
}

