.layout-topbar {
    background: #046DB5;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box; /* Esta línea es clave */
    z-index: 1000;
    transition: top 0.3s;
    padding: 1rem 2rem;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Botón salir */
.btn-salir {
    background-color: darkgray;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-salir:hover {
    background-color: #774343;
}

/* Espaciado para el contenido */
body {
    margin: 0;
    padding-top: 80px;
}

.topbar-title {
    font-family: "Times New Roman", Times, serif;
    font-size: 32px;
    font-weight: bold;
    color: white;
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .topbar-content {
        flex-direction: column;
        align-items: center; /* centrado horizontal */
        text-align: center;
        gap: 10px;
    }

    .topbar-title {
        font-size: 18px;
    }

    .btn-salir {
        align-self: center; /* centrado dentro del contenedor */
    }
}