:root {
    --primary: #3dace2;
    --primary-light: #e6f7f8;
    --primary-superlight: #f1f8f8;
    --primary-dark: #009ba2;
    --secondary: #8592a3;
    --success: #37ac04;
    --info: #03c3ec;
    --warning: #ffab00;
    --danger: #ff3e1d;
    --dark: #233446;
    --light: #f5f5f9;
    --gray: #d9dee3;
    --white: #fff;
    --success: #02bb5e;
    --merey: #f6a101;
}

.mt-2 {
    margin-top: 2rem !important;
}

.mt-1-5 {
    margin-top: 1.5rem !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--light);
    color: #697a8d;
    overflow-x: hidden;
    /*padding-left: 240px;*/
    margin: 0;
    /* Añadido para el sidebar */
    transition: all 0.3s ease;
}

.campo-error {
    border: 0.5px solid rgba(245, 85, 85, 0.911) !important;
    background-color: #ffffff;
}

table.dataTable {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
}

table.dataTable thead {
    background-color: var(--primary);
    color: white;
}

table.dataTable thead th {
    font-weight: bold;
    text-align: center;
}

table.dataTable tbody tr:nth-child(odd) {
    background-color: #f8f9fa;
}

table.dataTable tbody tr:hover {
    background-color: var(--merey);
    color: white;
}

table.dataTable tbody td {
    vertical-align: middle;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: var(--primary) !important;
    color: white !important;
    border-radius: 4px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: var(--primary) !important;
    margin: 0 2px;
}

.dataTables_wrapper .dataTables_filter input {
    border: 1px solid var(--primary);
    border-radius: 4px;
    padding: 4px 8px;
}

.dataTables_wrapper .dataTables_info {
    color: var(--primary);
}

table.dataTable td.dt-type-numeric {
    text-align: left;
}

.botonesDemostrativo {
    background-color: #e6f7f8 !important;
    color: #01c0c8 !important;
    border-radius: 8px;
    font-size: 20px;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divBoton {
    background-color: #e6f7f8;
    border-radius: 8px;
}

.txtDiseño {
    color: var(--primary) !important;
}

canvas {
    max-width: 600px;
    margin: auto;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-merey {
    background-color: var(--merey) !important;
    border-color: var(--merey) !important;
    color: white;
}

.btn-merey:hover {
    background-color: var(--merey) !important;
    border-color: var(--merey) !important;
    color: white;
}

.btn-info {
    color: var(--white);
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-info:hover {
    color: var(--white);
    background-color: #0b98b4;
    border-color: #0b98b4;
}

.btn-primaryDark {
    color: var(--primary-dark);
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-dark{
    color: var(--primary-dark);
}

.btn-info:hover {
    color: var(--white);
    background-color:var(--primary-dark);
    border-color:var(--primary-dark);
}

/*tooltip*/
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-title);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Main Content */
#content {
    padding: 24px;
    transition: all 0.3s ease;
    /*margin-top: 70px;*/
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page-title h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.page-title p {
    color: var(--secondary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Stats Cards */
.stat-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.1);
    background-color: #fff;
    margin-bottom: 24px;
    height: 100%;
}

.stat-card .card-body {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.stat-card .icon {
    font-size: 28px;
    color: var(--primary);
    width: 54px;
    height: 54px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-light);
}

.stat-card .stat-title {
    color: var(--secondary);
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.stat-card .stat-title-g {
    color: var(--secondary);
    margin-bottom: 8px;
}

.stat-card .stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.stat-card .stat-change {
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
}

.stat-card .stat-change.positive {
    color: var(--success);
}

.stat-card .stat-change.negative {
    color: var(--danger);
}

/* Charts */
.chart-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: #ffff;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.1);
    margin-bottom: 24px;
    height: 100%;
}

.chart-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
}

.chart-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.chart-card .card-body {
    padding: 20px;
}

/* Table */
.table-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 35px 0 rgba(154, 161, 171, 0.1);
    margin-bottom: 24px;
}

.table-card .card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
}

.table-card .table {
    margin-bottom: 0;
}

.table-card .table th {
    border-top: none;
    border-bottom: 1px solid var(--gray);
    color: var(--dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 12px 20px;
}

.table-card .table td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid var(--gray);
}

.table-card .table .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
}

.badge-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-status.completed {
    background-color: rgba(113, 221, 55, 0.12);
    color: var(--success);
}

.badge-status.pending {
    background-color: rgba(255, 171, 0, 0.12);
    color: var(--warning);
}

.badge-status.failed {
    background-color: rgba(255, 62, 29, 0.12);
    color: var(--danger);
}

.widget-icon {
    color: var(--white);
    font-size: 20px;
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer {
    background-color: #fff;
    border-top: 1px solid #dee2e6;
    color: #869099;
    padding: 1rem;
    margin-left: 70px;
    margin-right: -24px;
}

/*Menu*/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background-color: var(--white);
    border-right: 1px solid var(--gray);
    padding-top: 70px;
    transition: all 0.3s ease;
    z-index: 1030;
    overflow-y: auto;
}

.sidebar.collapsed {
    width: 80px;
    overflow: hidden;
}

.sidebar.collapsed:hover {
    width: 260px;
    overflow-y: auto;
}

.sidebar a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--primary);
    text-decoration: none;
    position: relative;
}

.sidebar a span {
    color: #233446
}

.sidebar a:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.sidebar i {
    margin-right: 10px;
    font-size: 18px;
    min-width: 20px;
}

.sidebar.collapsed a span {
    display: none;
}

.sidebar.collapsed:hover a span {
    display: inline;
}

.sidebar .has-submenu::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-size: 12px;
    transition: transform 0.3s;
}

.sidebar.collapsed .has-submenu::after {
    display: none;
}

.sidebar.collapsed:hover .has-submenu::after {
    display: block;
}

.sidebar .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light);
}

.sidebar .submenu.show {
    max-height: 2000px;
}

.sidebar .submenu a {
    padding-left: 50px;
    font-size: 14px;
}

.sidebar.collapsed .submenu a {
    padding-left: 20px;
}

.sidebar.collapsed:hover .submenu a {
    padding-left: 50px;
}

.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1040;
}

#contenedorPrincipal {
    margin-top: 0px;
    margin-left: 260px;
    padding: 0px 35px 20px 15px;
    transition: margin-left 0.3s ease;
}

.collapsed~#contenedorPrincipal {
    margin-left: 60px;
}

.sidebar.collapsed:hover~#contenedorPrincipal {
    margin-left: 260px;
}

#mainFooter {
    background-color: var(--white);
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--gray);
    margin-left: 80px;
}

.collapsed~#mainFooter {
    margin-left: 160px;
}

.logo-menu {
    width: 120px;
    max-width: 100%;
    height: auto;
}

.user-area {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .sidebar {
        left: -260px;
    }

    .sidebar.show {
        left: 0;
    }

    .logo-menu {
        width: 100px;
    }

    #contenedorPrincipal {
        margin-left: 0;
        margin-top: 0px;
        margin-left: 0px !important;
    }

    .sidebar.collapsed:hover {
        width: 260px;
    }

    .sidebar.collapsed:hover~#contenedorPrincipal {
        margin-left: 260px;
    }
}

/*Fin Menu*/
.nav {
    --bs-nav-link-padding-x: 1rem;
    --bs-nav-link-padding-y: 0.5rem;
    --bs-nav-link-font-weight: ;
    --bs-nav-link-color: var(--primary);
    --bs-nav-link-hover-color: var(--primary);
    --bs-nav-link-disabled-color: var(--bs-secondary-color);
    list-style:
        none;
}

.row {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .0);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.my-card {
    position: absolute;
    left: 40%;
    top: -20px;
    border-radius: 50%;
}

.texto4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.close {
    background-color: var(--merey);
}

.badge-success {
    background-color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: underline;
}

.txtInformativo {
    font-size: 13px;
}

.txtInformativo span {
    font-size: 13px;
    font-weight: bold;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary);
    --bs-btn-hover-border-color: var(--primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary);
    --bs-btn-active-border-color: var(--primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--primary);
    --bs-gradient: none;
}

.active>.page-link,
.page-link.active {
    z-index: 3;
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link:hover {
    z-index: 2;
    color: var(--white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--primary);
    text-decoration:
        none;
    background-color: var(--white);
    border: var(--bs-pagination-border-width) solid var(--primary);
    transition:
        color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-estilo {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-estilo:hover {
    background-color: var(--merey);
    border-color: var(--merey);
    color: white;
}

input:read-only {
    background: #eaeaea;
}

.select2-selection__rendered {
    line-height: 2.2 !important;
}

.text-primary {
    color: var(--primary);
}

.text-mere {
    color: var(--merey);
}

.bg-info {
    color: white;
}

.bg-info:hover {
    color: white;
}

.bg-primary {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.bg-primary:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.bg-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.bg-secondary:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.bg-merey {
    background-color: var(--merey);
    color: white;
}

.bg-merey:hover {
    background-color: var(--merey);
    color: white;
}

.bg-success {
    background-color: var(--success);
    color: white;
}

.bg-success:hover {
    background-color: var(--success);
    color: white;
}

.bg-danger {
    background-color: var(--danger);
    color: white;
}

.bg-danger:hover {
    background-color: var(--danger);
    color: white;
}

/*Estilo Resultado*/
.mostrarAreasValidar .card {
    font-size: 1em;
    overflow: hidden;
    padding: 0;
    border: none;
    border-radius: .28571429rem;
    box-shadow: 0 1px 3px 0 #d4d4d5, 0 0 0 1px #d4d4d5;
}

.mostrarAreasValidar .card-block {
    font-size: 1em;
    position: relative;
    margin: 0;
    /*padding: 1em;*/
    border: none;
    border-top: 1px solid rgba(34, 36, 38, .1);
    box-shadow: none;
}

.mostrarAreasValidar .card-img-top {
    width: 5rem;
    text-align: center;
    height: auto;
}

.mostrarAreasValidar .card-title {
    font-size: 1.28571429em;
    font-weight: 700;
    line-height: 1.2857em;
}

.mostrarAreasValidar .card-text {
    clear: both;
    margin-top: .5em;
    color: rgba(0, 0, 0, .68);
}

.mostrarAreasValidar .card-footer {
    font-size: 1em;
    position: static;
    top: 0;
    left: 0;
    max-width: 100%;
    padding: .75em 1em;
    color: rgba(0, 0, 0, .4);
    border-top: 1px solid rgba(0, 0, 0, .05) !important;
    background: #fff;
}

.mostrarAreasValidar .card-inverse .btn {
    border: 1px solid rgba(0, 0, 0, .05);
}

.mostrarAreasValidar .profile {
    position: absolute;
    top: -12px;
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    width: 25px;
    height: 25px;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 50%;
}

.mostrarAreasValidar .profile-avatar {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.mostrarAreasValidar .profile-inline {
    position: relative;
    top: 0;
    display: inline-block;
}

.mostrarAreasValidar .profile-inline~.card-title {
    display: inline-block;
    margin-left: 4px;
    vertical-align: top;
}

.mostrarAreasValidar .text-bold {
    font-weight: 700;
}

.mostrarAreasValidar .meta {
    font-size: 1em;
    color: rgba(0, 0, 0, .4);
}

.mostrarAreasValidar .meta a {
    text-decoration: none;
    color: rgba(0, 0, 0, .4);
}

.mostrarAreasValidar .meta a:hover {
    color: rgba(0, 0, 0, .87);
}

.mostrarAreasValidar .verRes {
    cursor: pointer;
}

/*TIME LINE*/
.timeline,
.timeline-horizontal {
    list-style: none;
    padding: 20px;
    position: relative;
}

.timeline:before {
    top: 40px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: #eeeeee;
    left: 50%;
    margin-left: -1.5px;
}

.timeline .timeline-item {
    margin-bottom: 20px;
    position: relative;
}

.timeline .timeline-item:before,
.timeline .timeline-item:after {
    content: "";
    display: table;
}

.timeline .timeline-item:after {
    clear: both;
}

.timeline .timeline-item .timeline-badge {
    color: #fff;
    width: 54px;
    height: 54px;
    line-height: 52px;
    font-size: 22px;
    text-align: center;
    position: absolute;
    top: 18px;
    left: 50%;
    margin-left: -25px;
    background-color: #7c7c7c;
    border: 3px solid #ffffff;
    z-index: 100;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.timeline .timeline-item .timeline-badge i,
.timeline .timeline-item .timeline-badge .fa,
.timeline .timeline-item .timeline-badge .glyphicon {
    top: 2px;
    left: 0px;
}

.timeline .timeline-item .timeline-badge.primary {
    background-color: #1f9eba;
}

.timeline .timeline-item .timeline-badge.info {
    background-color: #5bc0de;
}

.timeline .timeline-item .timeline-badge.success {
    background-color: #59ba1f;
}

.timeline .timeline-item .timeline-badge.warning {
    background-color: #d1bd10;
}

.timeline .timeline-item .timeline-badge.danger {
    background-color: #ba1f1f;
}

.timeline .timeline-item .timeline-panel {
    position: relative;
    width: 46%;
    float: left;
    right: 16px;
    border: 1px solid #c0c0c0;
    background: #ffffff;
    border-radius: 2px;
    padding: 20px;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline .timeline-item .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -16px;
    display: inline-block;
    border-top: 16px solid transparent;
    border-left: 16px solid #c0c0c0;
    border-right: 0 solid #c0c0c0;
    border-bottom: 16px solid transparent;
    content: " ";
}

.timeline .timeline-item .timeline-panel .timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-item .timeline-panel .timeline-body>p,
.timeline .timeline-item .timeline-panel .timeline-body>ul {
    margin-bottom: 0;
}

.timeline .timeline-item .timeline-panel .timeline-body>p+p {
    margin-top: 5px;
}

.timeline .timeline-item:last-child:nth-child(even) {
    float: right;
}

.timeline .timeline-item:nth-child(even) .timeline-panel {
    float: right;
    left: 16px;
}

.timeline .timeline-item:nth-child(even) .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
}

.timeline-horizontal {
    list-style: none;
    position: relative;
    padding: 20px 0px 20px 0px;
    display: inline-block;
}

.timeline-horizontal:before {
    height: 3px;
    top: auto;
    bottom: 26px;
    left: 56px;
    right: 0;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-horizontal .timeline-item {
    display: table-cell;
    height: 280px;
    width: 20%;
    min-width: 320px;
    float: none !important;
    padding-left: 0px;
    padding-right: 20px;
    margin: 0 auto;
    vertical-align: bottom;
}

.timeline-horizontal .timeline-item .timeline-panel {
    top: auto;
    bottom: 64px;
    display: inline-block;
    float: none !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-horizontal .timeline-item .timeline-panel:before {
    top: auto;
    bottom: -16px;
    left: 28px !important;
    right: auto;
    border-right: 16px solid transparent !important;
    border-top: 16px solid #c0c0c0 !important;
    border-bottom: 0 solid #c0c0c0 !important;
    border-left: 16px solid transparent !important;
}

.timeline-horizontal .timeline-item:before,
.timeline-horizontal .timeline-item:after {
    display: none;
}

.timeline-horizontal .timeline-item .timeline-badge {
    top: auto;
    bottom: 0px;
    left: 43px;
}

.kebab-link i {
    font-size: 1.5rem;
}

.kebab-link i:active,
.kebab-link i:hover {
    color: #4285F4;
}

.kebab-dropdown {
    position: absolute;
}

/* Material design for dropdowns */
.dropdown-sm>.dropdown-menu>.dropdown-item {
    padding: 5px;
    margin-left: 0;
}

.dropdown-menu>.dropdown-item {
    padding: 1rem;
    margin-left: 0;
}

.dropdown-menu>.dropdown-item:hover {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19);
    color: white;
    background: #4285F4;
}

.table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--white);
    /*--bs-table-accent-bg: var(--white);*/
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
}

table {
    border-collapse: collapse;
}

tr {
    border-width: 0.2px;
    border-bottom: 0.5px solid #9a9a9b;
}

.bb {
    border-bottom: 1px solid rgba(34, 36, 38, .1);
}

.headerSeleccionado {
    background-color: var(--primary);
    color: white;
    font-weight: bold;
}

.headerMerey {
    background-color: var(--merey);
    color: white;
    font-weight: bold;
}

.navResultados {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    height: 2rem;
    padding: 0.3rem;
}

.mayuscula {
    text-transform: uppercase;
}

::placeholder {
    color: #f5f5f9;
}

.text-primary {
    color: var(--primary) !important;
}

.text-merey {
    color: var(--merey);
}

.text-success {
    color: var(--success) !important;
}

/*Menu Usuario*/
.user-area {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ccc;
    padding: 10px 0;
    list-style: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

.user-menu li {
    padding: 8px 16px;
    white-space: nowrap;
}

.user-menu li:hover {
    background-color: #f2f2f2;
}

.user-area:hover .user-menu {
    display: block;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2 {
    margin-left: 2rem;
}

.profile-userpic {
    width: 5%;
    height: 5%;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}