﻿
.status-bar-safe-area {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .status-bar-safe-area {
        display: flex;
        position: sticky;
        top: 0;
        height: env(safe-area-inset-top);
        background-color: #f7f7f7;
        width: 100%;
        z-index: 1;
    }

    .flex-column, .navbar-brand {
        padding-left: env(safe-area-inset-left);
    }
}


/****************************/

.loading-container {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column; /* 👈 Para que el texto quede arriba y dots abajo */
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #0d6efd);
    color: white;
    font-family: "Segoe UI", sans-serif;
    z-index: 9999;
}

.loading-text {
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.letter {
    animation: glow 1.5s infinite alternate;
}

    .letter:nth-child(odd) {
        animation-delay: 0.2s;
    }

    .letter:nth-child(even) {
        animation-delay: 0.4s;
    }

@keyframes glow {
    0% {
        color: #ffffff;
    }

    50% {
        color: #ffcc00;
    }

    100% {
        color: #00e1ff;
    }
}

.dots {
    margin-top: 10px; /* 👈 Espacio debajo del título */
    font-size: 2rem;
    font-weight: bold;
}

    .dots::after {
        content: "";
        animation: dots 1.5s steps(4, end) infinite;
    }

@keyframes dots {
    0% {
        content: ".";
    }

    25% {
        content: "..";
    }

    50% {
        content: "...";
    }

    75% {
        content: "....";
    }

    100% {
        content: ".";
    }
}


/* Dynamic Tables */


.selectable-table tr:hover {
    background-color: #e6f2ff;
    cursor: pointer;
}

.selectable-table tr.row-selected {
    background-color: #cce6ff;
}

    .selectable-table tr.row-selected td:first-child::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 100%;
        background-color: #0d6efd;
    }
