/* _content/UbictumPortalWeb/Views/Shared/Error.cshtml.rz.scp.css */
.error-container[b-5tkam7w83d] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background: #f4f6f8;
}

.error-icon[b-5tkam7w83d] {
    font-size: 60px;
    margin-bottom: 15px;
}

.subtitle[b-5tkam7w83d] {
    color: #666;
    margin-bottom: 20px;
}

.request-id[b-5tkam7w83d] {
    background: #f1f3f5;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.actions[b-5tkam7w83d] {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.support-toggle[b-5tkam7w83d] {
    color: #2563eb;
    cursor: pointer;
    font-size: 14px;
}

.details[b-5tkam7w83d] {
    display: block;
    text-align: left;
    margin-top: 15px;
    background: #f9fafb;
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
}

@keyframes fadeIn-b-5tkam7w83d {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/UbictumPortalWeb/Views/Shared/_Layout.cshtml.rz.scp.css */

.footer[b-q2qinntycp] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* _content/UbictumPortalWeb/Views/Shared/_Loader.cshtml.rz.scp.css */
/* Fondo semitransparente */
.loader-overlay[b-c7e684s1su] {
    display: none; /* Se muestra con showLoader() */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Contenedor del loader */
.loader-container[b-c7e684s1su] {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Loader tipo Material */
.loader[b-c7e684s1su] {
    width: 60px;
    height: 60px;
    border: 6px solid #ccc;
    border-top-color: #11A99C;
    border-radius: 50%;
    animation: spin-b-c7e684s1su 2s linear infinite;
}

/* Animación */
@keyframes spin-b-c7e684s1su {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsivo */
@media (max-width: 480px) {
    .loader[b-c7e684s1su] {
        width: 40px;
        height: 40px;
        border-width: 4px;
    }

    .loader-container[b-c7e684s1su] {
        padding: 18px;
    }
}
/* _content/UbictumPortalWeb/Views/Shared/_Sidebar.cshtml.rz.scp.css */
#sidebar-wrapper[b-aat365fx5x] {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px; /* o el ancho que uses */
    height: 100vh;
    background-color: #fff;
    border-right: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    z-index: 1030; /* por si usas Bootstrap */
}

#wrapper.toggled #sidebar-wrapper[b-aat365fx5x] {
    width: 80px;
}

#wrapper.toggled .sidebar-text[b-aat365fx5x] {
    display: none;
}

.sidebar-heading[b-aat365fx5x] {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.5rem;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-shrink: 0;
    border-bottom: 2px solid #ccc;
}

@media (max-width: 768px) {
    #sidebar-wrapper[b-aat365fx5x] {
        margin-left: 0;
    }

        #sidebar-wrapper.show[b-aat365fx5x] {
            margin-left: 0;
        }
}
