

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
    .sidebar-fixed {
        width: 250px;
    }

    .main-content {
        margin-left: 250px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    font-size: 14px;
    position: relative;
    overflow-x: hidden !important; /* mata la barra horizontal */
    overflow-y: auto;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    max-width: 100%;
    overflow-x: hidden !important; /* mata la barra horizontal */
    /* mantén el vertical normal */
    overflow-y: auto;
}
    body::-webkit-scrollbar {
        height: 0 !important;
    }
/* Chrome/Safari */
body {
    scrollbar-width: auto;
}
/* Firefox: deja solo vertical si existe */
@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .position-lg-sticky {
        position: sticky !important;
    }
}

.table thead th {
    white-space: nowrap;
}
.btn-cancelar {
    background-color: #c0392b;
    color: white;
    border: none;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 5px;
}

.btn-guardar {
    background-color: #2e7d32;
    color: white;
    border: none;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 5px;
}