* {
        box-sizing: border-box;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
}

html,
body {
	overflow: hidden;
}

body {
        font-family: 'Nunito', sans-serif !important;
        background: radial-gradient(circle at 20% 20%, rgba(120, 121, 218, 0.2), transparent 25%),
                radial-gradient(circle at 80% 0%, rgba(100, 233, 255, 0.15), transparent 20%),
                linear-gradient(135deg, #050712 0%, #0c1024 45%, #121a35 100%);
        min-height: 100vh;
        margin: 0;
        margin-top: 120px !important;
        color: #d9deff;
}

ul {
	list-style: none;
	padding: 0;
}

textarea {
	background: #1b2e4b;
	border: none;
	border-radius: 5px;
}

.list-items {
	display: flex;
	flex-wrap: wrap;
}

.list-items li {
	background: #0b2f52;
	border: 1px solid #0b2f52;
	margin-right: 10px;
	margin-bottom: 10px;
	padding: 2.5px 5px;
	color: #eaebed;
	border-radius: 5px;
}

a:hover {
	text-decoration: none !important;
}

a:focus {
	outline: none;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
	font-family: 'Nunito', sans-serif !important;
}

h3 {
	margin-top: 5px !important;
}

.header-login {
	width: 100%;
}

.header-login img {
	margin: 0 auto;
	display: block;
	max-width: 150px;
}

.login {
        width: 420px;
        background: rgba(17, 23, 48, 0.9);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        margin: 50px auto;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(6px);
        overflow: hidden;
}

.login h1 {
        text-align: center;
        color: #f5f7ff;
        letter-spacing: 0.6px;
        font-size: 26px;
        padding: 26px 20px 18px 20px;
        margin: 0;
        background: linear-gradient(90deg, rgba(122, 153, 255, 0.12), rgba(93, 234, 255, 0.12));
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.login form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 20px;
}

.login form label {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 52px;
        height: 52px;
        background: linear-gradient(145deg, #23294a, #2f3561);
        color: #ffffff;
        border-radius: 12px;
        margin-right: 8px;
        box-shadow: 0 8px 20px rgba(7, 12, 30, 0.35);
}

.login form input[type="password"],
.login form input[type="text"] {
        width: 310px;
        height: 52px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: #f5f7ff;
        margin-bottom: 20px;
        padding: 0 15px;
        border-radius: 12px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.login form input[type="password"]:focus,
.login form input[type="text"]:focus {
        outline: none;
        border-color: #7ac9ff;
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 0 0 3px rgba(122, 201, 255, 0.15);
}

.login form input[type="submit"] {
        width: 100%;
        padding: 16px;
        margin-top: 14px;
        background: linear-gradient(135deg, #5de3ff, #7f7dff);
        border: 0;
        cursor: pointer;
        font-weight: 800;
        color: #0a0f21;
        transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 16px;
        font-family: 'Nunito', sans-serif !important;
        box-shadow: 0 14px 30px rgba(68, 126, 255, 0.35);
        letter-spacing: 0.5px;
}

.login form input[type="submit"]:hover {
        transform: translateY(-1px);
        filter: brightness(1.04);
        box-shadow: 0 18px 40px rgba(68, 126, 255, 0.45);
}

.content h5 {
	margin-top: 10px;
	margin-bottom: 0px;
}

.flex-nombre h5 {
	font-weight: bold;
}

.navtop {
        position: fixed;
        background: linear-gradient(90deg, rgba(6, 8, 20, 0.98) 0%, rgba(12, 16, 36, 0.98) 100%);
        height: 64px;
        width: 100%;
        border: 0;
        z-index: 999;
        top: 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(93, 227, 255, 0.1);
}

.navtop div {
	display: flex;
	margin: 0px 12.5px;
	width: 100%;
	height: 100%;
}

.navtop div h1,
.navtop div a {
	display: inline-flex;
	align-items: center;
}

.navtop div h1 {
        flex: 1;
        font-size: 22px;
        padding: 0;
        margin: 0;
        color: #f4f7ff;
        font-weight: 700;
        letter-spacing: 0.5px;
        background: linear-gradient(90deg, #f4f7ff, #7ac9ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
}

.navtop div a {
        padding: 0 18px;
        text-decoration: none;
        color: #a0a8c0;
        font-weight: 600;
        width: auto;
        transition: all 0.25s ease;
        border-radius: 8px;
        margin: 12px 5px;
        background: transparent;
}

.navtop div a:last-child {
        margin-right: 20px;
}

.navtop div a i {
	padding: 2px 8px 0 0;
        font-size: 14px;
}

.navtop div a:focus {
	outline: none;
}

.navtop div a:hover {
        color: #5de3ff;
        background: rgba(93, 227, 255, 0.1);
        transform: translateY(0);
}

.breadcumb {
        position: fixed;
        background: linear-gradient(90deg, rgba(10, 14, 30, 0.95) 0%, rgba(16, 20, 42, 0.95) 100%);
        height: 50px;
        width: 100%;
        border: 0;
        z-index: 999;
        top: 64px;
        align-items: center;
        padding: 0px 30px;
        color: #888ea8;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        font-size: 13px;
        letter-spacing: 0.5px;
}

.breadcumb .menu-toggler i {
	font-size: 18px;
	margin-right: 20px;
	cursor: pointer;
	color: #6b7280;
	transition: color 0.2s ease;
}

.breadcumb .menu-toggler:hover i {
	color: #5de3ff;
}

body.loggedin {
        background: radial-gradient(circle at 30% 0%, rgba(130, 150, 255, 0.08), transparent 25%),
                radial-gradient(circle at 80% 20%, rgba(71, 223, 255, 0.05), transparent 20%),
                #050712 !important;
        margin-top: 114px !important;
}

.vermas {
	background: #8c95a3;
	padding: 7px;
	color: white;
	border-radius: 5px;
}

.vermas:hover {
	background: #2369ac;
	padding: 7px;
	color: white;
	border-radius: 5px;
}

.content-card {
        background: linear-gradient(145deg, rgba(18, 26, 48, 0.95), rgba(10, 16, 34, 0.95));
        border-radius: 14px;
        padding: 20px 22px;
        color: #cdd5f1;
        margin-top: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.04);
}

.content-card input {
	height: 30px;
	padding: 7px;
}

.license-input {
	min-width: 400px;
}

.content-card input,
.content-card select {
        background: #16223c;
        border: 1px solid rgba(255, 255, 255, 0.05);
        color: #eaebed;
        border-radius: 8px;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.content-card input:focus,
.content-card select:focus {
        outline: none;
        border-color: #7ac9ff;
        box-shadow: 0 0 0 3px rgba(122, 201, 255, 0.12);
}

.table-wrapper {
	overflow-x: auto;
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
	border: 1px solid #191e3a !important;
}

#wrapper-data .row {
	margin-right: 0px;
	margin-left: 0px;
	margin-top: 10px;
}

#wrapper-data .row div {
	padding-right: 0px;
	padding-left: 0px;
}

td,
th {
	height: auto !important;
	vertical-align: middle !important;
}

.content h2 {
	margin: 0;
	padding: 10px 0;
	font-size: 22px;
	color: #e0e6ed;
}

.content h4 {
	color: #e0e6ed
}

.content>p,
.content>.content-row {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
	margin: 0;
	margin: 20px 10px;
	gap: 20px;
}

.h-100 {
	height: 100%;
}

.w-100 {
	width: 100%;
}

.xex-box {
        background: linear-gradient(135deg, rgba(16, 22, 44, 0.95), rgba(12, 18, 38, 0.92));
        border-radius: 14px;
        padding: 18px 22px;
        color: #e0e6ed;
        position: relative;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
        border: 1px solid rgba(255, 255, 255, 0.04);
        overflow: hidden;
}

.accounts {
	min-height: 160px;
	overflow: hidden;
	padding-left: 45%;
}

.accounts:before {
        content: "";
        position: absolute;
        top: -29px;
        left: -34px;
        height: 150px;
        width: 150px;
        border-radius: 50%;
        filter: blur(0.4px);
        opacity: 0.7;
}

.accounts .data-container {
	font-size: 24px;
}

.bank .data-container {
	color: #ba85fe;
}

.cash .data-container {
	color: #91b0a6;
}

.black .data-container {
	color: #91413b;
}

.icoin .data-container {
	color: #c2b029;
}

.bank:before {
	background: #1d1a3b;
}

.cash:before {
	background: #1a3b2a;
}

.black:before {
	background: #2d2d2d;
}

.icoin:before {
	background: #5f5c43;
}

.xex-box .xex-box-img {
        position: absolute;
        left: 0;
        width: 100px;
        opacity: 0.7;
}

.content>p table td,
.content>div table td {
	padding: 5px;
}

.content>p table td:first-child,
.content>div table td:first-child {
	font-weight: bold;
	color: #888ea8;
	padding-right: 15px;
}

thead {
	background: #1b2e4b;
}

.accion {
	margin-top: 25px;
}

.content>div p {
	padding: 0;
	margin: 0 0 10px 0;
}

.data-container {
	margin-top: 10px;
}

.data-item {
	padding: 10px 0px;
}

.bottom-dashed {
	border-bottom: 1px dashed #3b3f5c;
}

.totals span {
	font-size: 25px;
}

.totals-counter {
	align-items: center;
}

.icon-counter {
	margin-right: 10px;
	width: 50px;
	height: 50px;
	background: chocolate;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-counter i {
	font-size: 25px;
}

.totals-counter h4 {
	margin-bottom: 0px;
}

.mb-20 {
	margin-bottom: 10px;
}

.gap-20 {
	gap: 20px;
}

.flex {
	display: flex;
}

.flex-end {
	align-items: flex-end;
}

.f-column {
	flex-direction: column
}

.wrap {
	flex-wrap: wrap;
}

.col,
.col-50,
.col-30 {
	flex: 1;
}

.flex-nombre {
	margin-right: 20px;
}

.flex-nombre h5 {
	margin-bottom: 10px;
}

.menu-item {
	display: flex;
	align-items: center;
}

.menu-item i {
	font-size: 14px;
	margin-right: 10px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #6b7280;
	transition: color 0.2s ease;
}

.menu-item span {
	flex: 1;
}

/* The side navigation menu */
.sidebar {
	margin: 0;
	padding: 10px 10px;
	width: 260px;
	height: calc(100vh - 114px);
	background: linear-gradient(180deg, rgba(6, 8, 24, 0.98) 0%, rgba(8, 12, 28, 0.98) 100%);
	position: fixed;
	overflow: auto;
	top: 114px;
	z-index: 999;
	border-right: 1px solid rgba(93, 227, 255, 0.08);
}

/* Scrollbar styling for sidebar */
.sidebar::-webkit-scrollbar {
	width: 4px;
}
.sidebar::-webkit-scrollbar-track {
	background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
	background: rgba(93, 227, 255, 0.2);
	border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
	background: rgba(93, 227, 255, 0.4);
}

/* Sidebar links */
.sidebar a {
	display: block;
	color: #6b7280;
	padding: 8px 12px;
	text-decoration: none;
	border-radius: 8px;
	margin-bottom: 2px;
	font-weight: 600;
	font-size: 13px;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

/* Active/current link */
.sidebar a.active {
	background: linear-gradient(135deg, rgba(93, 227, 255, 0.15), rgba(127, 125, 255, 0.15));
	color: #5de3ff;
	border: 1px solid rgba(93, 227, 255, 0.2);
	box-shadow: 0 4px 15px rgba(93, 227, 255, 0.1);
}

.sidebar a.active .menu-item i {
	color: #5de3ff;
}

/* Links on mouse-over */
.sidebar a:hover:not(.active) {
	background: rgba(255, 255, 255, 0.03);
	color: #e0e6ed;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transform: translateX(3px);
}

.sidebar a:hover:not(.active) .menu-item i {
	color: #7ac9ff;
}

/* Page content. The value of the margin-left property should match the value of the sidebar's width property */
div.content {
	margin-left: 260px;
	padding: 15px 25px;
	overflow-y: auto;
	height: calc(100vh - 114px);
	padding-bottom: 50px;
	position:relative;
}

div.row:nth-child(2) {
	overflow: auto;
}

.rojo {
	color: red;
}

.verde {
	color: green;
}

#oficio {
	height: 29px;
}

.delete-btn {
	display: block;
	color: white;
	background: red;
	text-align: center;
	margin-top: 10px;
	width: 175px;
}

.delete-btn:hover {
	color: white;
	background: rgb(224, 107, 107);
}

.green:hover {
	color: white;
	background: rgb(68, 143, 68);
}

.yellow:hover {
	color: white;
	background: rgb(229, 223, 134);
}

.green {
	display: block;
	color: white;
	background: green;
	text-align: center;
	margin-right: 10px;
	width: 175px;
}

.yellow {
	display: block;
	color: white;
	background: rgb(224, 184, 75);
	text-align: center;
	margin-right: 10px;
	width: 175px;
}

.header-logo {
	display: flex;
	align-items: center;
}

.logomini {
	width: 38px;
	height: 38px;
	margin-right: 15px;
	filter: drop-shadow(0 0 8px rgba(93, 227, 255, 0.3));
	transition: filter 0.3s ease;
}

.logomini:hover {
	filter: drop-shadow(0 0 12px rgba(93, 227, 255, 0.5));
}

.panel-btn {
	margin-top: 5px;
	width: 160px;
}

.edit {
	padding: 3px 6px 6px 6px;
	background: #12253f;
	color: white;
	border-radius: 50%;
	cursor: pointer;
}

.search {
	background: #12253f;
	color: white;
	border-radius: 50%;
	cursor: pointer;
	height: 30px;
	width: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.edit i,
.search i {
	font-size: 13px;
}

.edit-password-form {
	display: none;
}

.cuenta {
	margin-bottom: 10px;
}

.cuenta input {
	max-width: 100px;
}

.loading {
	display: none;
}

.error {
	color: #ff6b6b;
	background: rgba(255, 107, 107, 0.1);
	border: 1px solid rgba(255, 107, 107, 0.3);
	padding: 12px 16px;
	border-radius: 8px;
	margin: 10px 20px;
	font-size: 14px;
	text-align: center;
}

.error.blocked {
	color: #ffa502;
	background: rgba(255, 165, 2, 0.15);
	border: 1px solid rgba(255, 165, 2, 0.4);
	animation: pulse-warning 2s infinite;
}

.error small {
	display: block;
	margin-top: 6px;
	opacity: 0.8;
	font-size: 12px;
}

@keyframes pulse-warning {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}


/* LIVE PAGE */
.live-player {
	width: 420px;
	height: 108px;
	background: #3b3f5c;
	border-radius: 5px;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #e0e6ed;
}

.live-player div {
	justify-content: space-between;
}

.live-players {
	gap: 20px;
}







/* SPINNER */
.spinner-container {
	width: 100%;
	margin: 0 auto;
}

.spinner {
	width: 40px;
	height: 40px;
	margin: 100px auto;
	background-color: #12253f !important;
	border-radius: 100%;
	-webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
	animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0)
	}

	100% {
		-webkit-transform: scale(1.0);
		opacity: 0;
	}
}

@keyframes sk-scaleout {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
	}
}

.hide {
	display: none;
}

table {
	color: #888ea8;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	background-color: #0e1726 !important;
	border-color: #0e1726 !important;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	background-color: #4361ee !important;
	border-color: #4361ee !important;
	color: #fff !important;
	border-radius: 5px;
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #888ea8 !important;
	text-decoration: none;
	background-color: transparent !important;
	border: transparent !important;
}

.btn {
	background: #4361ee;
	color: #eaebed;
	min-height: 50px;
	min-width: 250px;
	font-size: 17px !important;
}

.btn:hover {
	color: #ccc !important;
	background: #2525ca;
}

.custom-btn {
	margin-top: 20px;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 20%;
}

input[type="submit"] {
	background: #4361ee;
}

.etiqueta {
	color: #e0e6ed;
	width: 300px;
	margin-right: 5px;
	background: #3b3f5c;
	margin-bottom: 5px;
	border-radius: 5px;
	padding: 2.5px 5px;
	justify-content: space-between;
	align-items: center;
}

/* COLORS */
.btn-progress {
	background: #0b2f52;
	color: #4198e0;
}

.btn-delete {
	background: #520f0b;
	color: #e04141;
	padding: 7px;
	border-radius: 5px;
	display: block;
}

.btn-delete:hover {
	background: #a82222;
	color: #e18e8e;
}

.btn-success {
	background: #0c272b;
	color: #3d9d71;
}

.yellow-c {
	color: #c58e38;
}

.bg-blue {
	background: #4361ee;
}

.bg-green {
	background: #009688;
}

.bg-red {
	background: #e7515a;
}

.bg-purple {
	background: #805dca;
}

.bg-yellow {
	background: #e2a03f;
}

.stats {
	flex-wrap: wrap;
}

.content-row .col-stat {
	width: 24%;
}

.column {
	flex-direction: column;
}

.carsearch p {
	display: flex;
	align-items: center;
}

.log-entry{
	border: 2px solid;
	border-radius: 10px;
	margin-bottom: 30px;
}
.card-body-log{
	padding: 10px 20px;
}
.card-body-hd{
	background: rgb(136, 142, 168);
	color: #0e1726;
	padding: 5px 20px;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.shield{
	font-size: 14px;
	color: black;
	margin-left: 12px;
	background: #d5d5d5;
	border-radius: 5px;
	padding: 4px;
	cursor: pointer;
}
.user-h2{
	display: flex;
  align-items: center;
}

.minibtn{
	background-color: rgb(67, 97, 238);
	color: white;
	display: flex;
	align-items: center;
	border-radius: 5px;
	margin-left: 10px;
	padding:10px;
	border:0px!important;
}
.actions-ac .minibtn{
	width:150px;
	justify-content: center;
}
.minibtn.active {
    background-color: #4CAF50; /* Verde */
    color: white;
}
.ac-users div{
	padding: 10px;
	display: flex;
	flex-direction: column;
	background: #1b2e4b;
	border-radius: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1400px) {
	.col-stat {
		width: 48.5% !important;
	}
}

@media screen and (max-width: 1000px) {
	.col-stat {
		width: 100% !important;
	}

	.column-mobile {
		flex-direction: column;
	}
}

@media screen and (max-width: 798px) {
	.sidebar {
		/* display:none; */
		width: 60px;
		padding: 10px 8px;
	}

	.menu-item span {
		display: none;
	}

	.menu-section {
		display: none;
	}

	.menu-divider {
		margin: 5px 0;
	}

	div.content {
		margin-left: 60px;
	}

	.header-logo h1 {
		display: none !important;
	}

	.navtop {
		padding-right: 25px;
	}

	.data-container .ttl {
		flex-direction: column;
	}

	.menu-item i {
		margin-right: 0px;
	}

	.sidebar a {
		padding: 12px;
		display: flex;
		justify-content: center;
	}

	.breadcumb {
		padding: 0px 23px;
	}

	.icon-counter {
		width: 40px;
		height: 40px;
	}

	.icon-counter i {
		font-size: 20px;
	}

	.accounts {
		padding-left: 33%;
		min-height: 120px;
	}

	.accounts::before {
		height: 108px;
		width: 100px;
	}

	.xex-box .xex-box-img {
		width: 50px;
	}

	.accounts .data-container {
		font-size: 16px;
	}
	.accounts h3{
		font-size: 19px;
	}
	.live-player {
		width: 100%;
		overflow: hidden;
		line-break: anywhere;
		height: auto;
	  }
	  .search{
		width: 85px;
	  }
	  .license-input {
		min-width:0;
	  }
	  .btn{
		min-width:100%;
	  }
}




/* On screens that are less than 700px wide, make the sidebar into a topbar */
/* @media screen and (max-width: 700px) {
	.sidebar {
		width: 100%;
		height: auto;
		position: relative;
	}
	.sidebar a {float: left;}
	div.content {margin-left: 0;}
} */

/* On screens that are less than 400px, display the bar vertically, instead of horizontally */
/* @media screen and (max-width: 400px) {
	.sidebar a {
		text-align: center;
		float: none;
	}
}  */