.center {
	text-align: center;
}

.oscuro {
	background-color: #dfe6e9;
}

.orange {
	color: orange;
}

.align-left {
	text-align: left;
}

.row_mod {
	padding-top: 10px;
}

/* INICIO Nestable Estilo */
.dd {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	max-width: 600px;
	list-style: none;
	font-size: 11px;
	line-height: 20px; }

.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none; }
.dd-list .dd-list {
	padding-left: 30px; }

.dd-item,
.dd-empty,
.dd-placeholder {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 20px;
	/*font-size: 13px;*/
	line-height: 20px; }

.dd-handle {
	display: block;
	height: 30px;
	margin: 5px 0;
	padding: 5px 10px;
	color: #333;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #ccc;
	background: #fafafa;
	border-radius: 3px;
	box-sizing: border-box; }

.dd-handle:hover {
	color: #2ea8e5;
	background: #fff; }

.dd-item > button {
	position: relative;
	cursor: pointer;
	float: left;
	width: 25px;
	height: 20px;
	margin: 5px 0;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	background: transparent;
	font-size: 11px;
	line-height: 1;
	text-align: center;
	font-weight: bold; }

.dd-item > button:before {
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	text-indent: 0; }
.dd-item > button.dd-expand:before {
	content: '+'; }
.dd-item > button.dd-collapse:before {
	content: '-'; }

.dd-expand {
	display: none; }

.dd-collapsed .dd-list,
.dd-collapsed .dd-collapse {
	display: none; }

.dd-collapsed .dd-expand {
	display: block; }

.dd-empty,
.dd-placeholder {
	margin: 5px 0;
	padding: 0;
	min-height: 30px;
	background: #f2fbff;
	border: 1px dashed #b6bcbf;
	box-sizing: border-box;
	-moz-box-sizing: border-box; }

.dd-empty {
	border: 1px dashed #bbb;
	min-height: 100px;
	background-color: #e5e5e5;
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px; }

.dd-dragel {
	position: absolute;
	pointer-events: none;
	z-index: 9999; }
.dd-dragel > .dd-item .dd-handle {
	margin-top: 0; }
.dd-dragel .dd-handle {
	box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, 0.1); }

.dd-nochildren .dd-placeholder {
	display: none; }
/* FIN Nestable Estilo */


/* ==========================================
   PREMIUM DESIGN SYSTEM - Global Styles
   ========================================== */
:root {
	--premium-success: #10b981;
	--premium-warning: #f59e0b;
	--premium-danger: #ef4444;
	--premium-info: #3b82f6;
	--premium-primary: #6366f1;
	--premium-dark: #2d3436;
}

.btn-premium {
	border-radius: 12px;
	padding: 10px 20px;
	font-weight: 600;
	transition: all 0.2s;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-premium:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.bg-premium-success { background-color: var(--premium-success) !important; }
.bg-premium-warning { background-color: var(--premium-warning) !important; }
.bg-premium-danger { background-color: var(--premium-danger) !important; }
.bg-premium-info { background-color: var(--premium-info) !important; }
.bg-premium-primary { background-color: var(--premium-primary) !important; }
.bg-premium-dark { background-color: var(--premium-dark) !important; }

.card-header-premium {
	padding: 1.5rem;
	border: none;
}

.page-header-premium {
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.text-indigo { color: #6366f1 !important; }
.text-orange { color: #f97316 !important; }

/* Fix btn-light contrast */
.btn-light {
	background-color: #f1f3f5 !important;
	color: #343a40 !important;
	border-color: #dee2e6 !important;
}
.btn-light:hover {
	background-color: #e2e6ea !important;
	color: #212529 !important;
	border-color: #d6d9dc !important;
}

.btn-circle-premium {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.btn-circle-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    filter: brightness(0.95);
}

.btn-circle-premium i {
    font-size: 0.85rem;
}

