@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

h3 {
    font-size: 1.2375rem;
    color: #0c0c0c;
}

a {
    cursor: pointer;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

li {
    list-style: none;
}

.submenu-li {
    padding-left: 30px;
}

/* Layout skeleton */

.wrapper {
    align-items: stretch;
    display: flex;
    width: 100%;
}

#sidebar {
    max-width: 220px;
    min-width: 220px;
    transition: all 0.35s ease-in-out;
    box-shadow: 0 0 35px 0 rgba(49, 57, 66, 0.5);
    z-index: 1111;
    background-color: #222;
}

/* Sidebar collapse */

#sidebar.collapsed {
    margin-left: -220px;
}

.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    transition: all 0.35s ease-in-out;
}

.sidebar-logo {
    padding: 1.15rem 1.5rem;
}

.sidebar-logo a {
    color: #e9ecef;
    font-size: 1.25rem;
    font-weight: 600;
}

.sidebar-nav {
    padding: 0;
}

.sidebar-header {
    color: #e9ecef;
    font-size: .75rem;
    padding: 1.5rem 1.5rem .375rem;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #e9ecef;
    position: relative;
    display: block;
    font-size: 1rem;
}

a.sidebar-link.active {
    color: #fff;
    background-color: #0d6efd;

}

.nav-link.active {
    font-weight: 600;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #0d6efd;
    color: #212529;
}

.sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

.sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.content {
    flex: 1;
    max-width: 100vw;
    width: 100vw;
}

/* Sidebar toggle button (gray lines on white background) */
.sidebar-toggle {
    background: transparent;
    border: 0;
    padding: .25rem .5rem;
    --sidebar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28108,117,125,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.sidebar-toggle .navbar-toggler-icon {
    background-image: var(--sidebar-toggler-icon-bg);
    background-color: transparent;
}

.table-wrapper{
		width:100%;
		height:calc(100vh - 50px); /* ajusta según tu layout */
        overflow:auto;
		}
.table-wrapper-height {
        width:100%;
        height:calc(100vh - 50px); /* ajusta según tu layout */
        overflow-y: auto;
        overflow-x: hidden;
        }

.number-row {
		font-size: 12px;
		/* opcional */
		font-weight: normal;
	}

.align-right {
    text-align: right;
}
/* Responsive */

@media (min-width:768px) {
    .content {
        width: auto;
    }
}