/*//////////////////////////////////////////////////////////////////
[ FONT ]*/

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}

@font-face {
    font-family: Poppins-SemiBold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}


/*//////////////////////////////////////////////////////////////////
[ RESTYLE TAG ]*/

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body,
html {
    height: auto;
    font-family: Poppins-Regular, sans-serif;
}

/*---------------------------------------------*/
a {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
}

a:focus {
    outline: none !important;
}

a:hover {
    text-decoration: none;
    color: #333333;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

p {
    font-family: Poppins-Regular;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    margin: 0px;
}

ul,
li {
    margin: 0px;
    list-style-type: none;
}


/*---------------------------------------------*/
input {
    outline: none;
    border: none;
}

textarea {
    outline: none;
    border: none;
}

textarea:focus,
input:focus {
    border-color: transparent !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}

textarea:focus::-webkit-input-placeholder {
    color: transparent;
}

textarea:focus:-moz-placeholder {
    color: transparent;
}

textarea:focus::-moz-placeholder {
    color: transparent;
}

textarea:focus:-ms-input-placeholder {
    color: transparent;
}

input::-webkit-input-placeholder {
    color: #adadad;
}

input:-moz-placeholder {
    color: #adadad;
}

input::-moz-placeholder {
    color: #adadad;
}

input:-ms-input-placeholder {
    color: #adadad;
}

textarea::-webkit-input-placeholder {
    color: #adadad;
}

textarea:-moz-placeholder {
    color: #adadad;
}

textarea::-moz-placeholder {
    color: #adadad;
}

textarea:-ms-input-placeholder {
    color: #adadad;
}

/*---------------------------------------------*/
button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}


/*//////////////////////////////////////////////////////////////////
[ Utility ]*/
.txt1 {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #999999;
    line-height: 1.5;
}

.txt2 {
    font-family: Poppins-Regular;
    font-size: 15px;
    color: #2b6c8c;
    line-height: 1.5;
}

.txt3 {
    font-family: Ubuntu-Bold;
    font-size: 15px;
    color: #2b6c8c;
    line-height: 1.4;
    text-transform: uppercase;
}

/*//////////////////////////////////////////////////////////////////
[ login ]*/

.limiter {
    width: 100%;
    margin: 0 auto;
}

.container-login100 {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;
    flex-direction: column;
}

.wrap-login100 {
    width: 390px;
    background: #fff;
}


/*------------------------------------------------------------------
[ Form ]*/

.login100-form {
    width: 100%;
}

.login100-form-title {
    display: block;
    font-family: Poppins-Bold;
    font-size: 30px;
    color: #330086;
    line-height: 1.2;
    text-align: center;
}

.login100-form-avatar {
    display: block;
    width: 300px;
    height: 50px;
    overflow: hidden;
    margin: -40px auto;
    margin-bottom: 8px;
}

.login100-form-avatar img {
    width: 100%;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
    width: 100%;
    position: relative;
    border-bottom: 2px solid #d9d9d9;
}

.input100 {
    font-family: Poppins-SemiBold;
    font-size: 18px;
    color: #555555;
    line-height: 1.2;
    display: block;
    width: 100%;
    height: 52px;
    background: transparent;
    padding: 0 5px;
}

/*---------------------------------------------*/
.focus-input100 {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.focus-input100::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    background: #2b6c8c;
}

.focus-input100::after {
    font-family: Poppins-Medium;
    font-size: 18px;
    color: #999999;
    line-height: 1.2;
    content: attr(data-placeholder);
    display: block;
    width: 100%;
    position: absolute;
    top: 15px;
    left: 0px;
    padding-left: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.input100:focus+.focus-input100::after {
    top: -20px;
    font-size: 15px;
}

.input100:focus+.focus-input100::before {
    width: 100%;
}

.has-val.input100+.focus-input100::after {
    top: -20px;
    font-size: 15px;
}

.has-val.input100+.focus-input100::before {
    width: 100%;
}


/*------------------------------------------------------------------
[ Button ]*/
.container-login100-form-btn {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.login100-form-btn {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background-color: #330086;
    border-radius: 25px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.login100-form-btn:hover {
    background-color: #6700EF;
    box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -webkit-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -o-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
    -ms-box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);
}


/*---------------------------------------------*/
.btn-show-pass {
    font-size: 15px;
    color: #999999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    padding-right: 5px;
    cursor: pointer;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-show-pass:hover {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
}

.btn-show-pass.active {
    color: #6a7dfe;
    color: -webkit-linear-gradient(left, #21d4fd, #b721ff);
    color: -o-linear-gradient(left, #21d4fd, #b721ff);
    color: -moz-linear-gradient(left, #21d4fd, #b721ff);
    color: linear-gradient(left, #21d4fd, #b721ff);
}


/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 2px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0px;
    pointer-events: none;
    font-family: Poppins-Regular;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    font-size: 16px;
    color: #c80000;
    display: block;
    position: absolute;
    background-color: #fff;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 5px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}


/*//////////////////////////////////////////////////////////////////
[ Login more ]*/
.login-more li {
    position: relative;
    padding-left: 16px;
}

.login-more li::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cccccc;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
    position: relative;
}

.alert-validate::before {
    content: attr(data-validate);
    position: absolute;
    z-index: 1000;
    max-width: 70%;
    background-color: #fff;
    border: 1px solid #c80000;
    border-radius: 14px;
    padding: 4px 25px 4px 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    pointer-events: none;

    font-family: Ubuntu-Bold;
    color: #c80000;
    font-size: 13px;
    line-height: 1.4;
    text-align: left;

    visibility: hidden;
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.alert-validate::after {
    content: "\f06a";
    font-family: FontAwesome;
    display: block;
    position: absolute;
    z-index: 1100;
    color: #c80000;
    font-size: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 16px;
}

.alert-validate:hover:before {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 992px) {
    .alert-validate::before {
        visibility: visible;
        opacity: 1;
    }
}

.add-button {
    padding-right: 5px !important;
}

.search-box {
    padding-left: 2%;
    padding-top: 1%;
    padding-bottom: 1%
}

.table-padding {
    padding: 0%;
}

/*//////////////////////////////////////////////////////////////////
[ Responsive ]*/
@media (max-width: 576px) {
    .login100-form {
        padding-left: 15px;
        padding-right: 15px;
    }

    /*Dialogs angular*/
    .dialogdemoBasicUsage #popupContainer {
        position: relative;
    }

    .dialogdemoBasicUsage .footer {
        width: 100%;
        text-align: center;
        margin-left: 20px;
    }

    .dialogdemoBasicUsage .footer,
    .dialogdemoBasicUsage .footer>code {
        font-size: 0.8em;
        margin-top: 50px;
    }


    .dialogdemoBasicUsage div#status {
        color: #c60008;
    }

    .dialogdemoBasicUsage .dialog-demo-prerendered md-checkbox {
        margin-bottom: 0;
    }

}

/*uploader*/

.thumb {
    width: 24px;
    height: 24px;
    float: none;
    position: relative;
    top: 7px;
}

form .progress {
    line-height: 15px;
}

.progress {
    display: inline-block;
    width: 100px;
    border: 3px groove transparent;
    background: #50D050;
    color: white;
}

.progress div {
    font-size: smaller;
    background: orange;
    width: 0;
}

.registerButton {
    padding-left: 0%
}

.titleMargin {
    margin-top: 2%;
    margin-bottom: 3.5%
}

.disabled {
    pointer-events: none;
}

.button-padding {
    padding: 0;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6700EF;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
}

.loader.ng-animate {
    -webkit-animation: none 0s;
}

.loaderApp {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #6700EF;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin: auto auto auto 55%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
}

.loaderApp.ng-animate {
    -webkit-animation: none 0s;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*Banner*/

#shadowbox {
    position: fixed;
    z-index: 998;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

#banner {
    position: fixed;
    z-index: 999;
    top: 100px;
    left: 50px;
    height: 600px;
    width: 300px;
    background: #FFF;
}

#close {
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: Arial, Helvetica;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    font-weight: bold;
}

.close-icon {
    margin-top: -10px;
    margin-right: -10px;
    display: block;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: silver;
    border-radius: 100%;
    background: -webkit-linear-gradient(-45deg, transparent 0%, transparent 46%, black 46%, black 56%, transparent 56%, transparent 100%), -webkit-linear-gradient(45deg, transparent 0%, transparent 46%, black 46%, black 56%, transparent 56%, transparent 100%);
    background-color: silver;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.stock-overcome {
    color: red;
    font-weight: bold;
}

.medication-taken {
    background-color: #d4edda !important;
    color: #155724 !important;
}

.medication-disabled {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    opacity: 0.7;
}

.medication-disabled td {
    color: #6c757d !important;
}

.hospitalization-logo {
    display: inline-block;
}

.web-button {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

thead {
    font-size: 18px;
    color: #17a88c;
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #467fd0;
    border-color: #467fd0;
}

.panel-primary {
    border-color: #467fd0;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
    color: inherit;
    font-weight: bold;
}

.custom-margin {
    position: fixed;
    right: 2%;
    top: 9%;
    margin-left: 2%;
    z-index: 999;
}

.menu-style {
    font-size: 21px;
    color: whitesmoke;
    font-weight: bold;
}

.no-border {
    border-top: none;
}

.info-button {
    font-weight: bold;
    margin-top: 1%;
}

.tr-label-custom-style {
    white-space: pre-wrap;
    border: 1px black solid;
}

.table-lable-style {
    border: 1px black solid;
}

.labels-margin-top {
    margin-top: 0.6%;
    border-width: 0
}

.custom-label-padding {
    padding-right: 10px;
    padding-left: 10px;
}

.custom-last-label-padding {
    padding-right: 2px;
}

.label-name {
    padding-left: 3px;
    position: relative;
    top: -2.3em;
}


button.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resident-button-width {
    width: 103%;
}

.padding-5px {
    margin-right: 5px;
}

.margin-custom {
    margin-top: 2%;
    margin-bottom: 1%;
    margin-left: 1%;
}

.cut-text {
    text-overflow: ellipsis;
}

.bagdge-color {
    background-color: #FF504C;
}

.tabs-style {
    font-size: 20px;
    font-weight: bold
}

.category-background-color {
    background: #8181F7 !important;
}

.stock-background-color {
    background: #045FB4;
}

.stock-font-style {
    font-size: 21px;
    color: white;
}

.export-page-type {
    font-weight: bold;
    color: #333333;
    margin-bottom: 5px;
}

.unclickable {
    pointer-events: none;
    /* Disables all interactions */
    opacity: 0.6;
    /* Optional: makes the button look disabled */
    cursor: not-allowed;
    /* Optional: shows a "not-allowed" cursor */
}

.margin-b-10 {
    margin-bottom: 10px;
}

.margin-b-5 {
    margin-bottom: 5px;
}

.wrap_td {
    white-space: pre-wrap;
}

.modal-site-enabled {
    background-color: #330086;
    color: white;
}

.modal-site-enabled-btn {
    background-color: #330086;
    color: white;
}

.modal-site-enabled-btn:hover,
.modal-site-enabled-btn:focus,
.modal-site-enabled-btn:active {
    background-color: #6633CC;
    color: white !important;
    border-color: #6633CC;
}

/* Estilos para estandarizar la imagen de perfil del residente y empleado */
.profile-image-main {
    width: 300px !important;
    height: 350px !important;
    max-width: 100% !important;
    max-height: 350px !important;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: block !important;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.profile-image-main:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Asegurar que el contenedor mantenga las proporciones y alineación */
.profile_img {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 15px;
}

#crop-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive para diferentes tamaños de pantalla */
@media (max-width: 1200px) {
    .profile-image-main {
        width: 280px !important;
        height: 320px !important;
    }
}

@media (max-width: 992px) {
    .profile-image-main {
        width: 260px !important;
        height: 300px !important;
    }
}

@media (max-width: 768px) {
    .profile-image-main {
        width: 240px !important;
        height: 280px !important;
    }
}

@media (max-width: 576px) {
    .profile-image-main {
        width: 260px !important;
        height: 300px !important;
    }
}

/* Para pantallas muy pequeñas */
@media (max-width: 480px) {
    .profile-image-main {
        width: 50px;
        height: 50px;
    }
}

/*//////////////////////////////////////////////////////////////////
[ TASK SPECIFIC STYLES ]*/

/* Estilos específicos para vistas de tareas */
#simpleTaskList .task-card,
#simpleNewTask .task-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#simpleTaskList .task-card.task-completed,
#simpleNewTask .task-card.task-completed {
    border-left: 4px solid #5cb85c;
    background-color: #f8fff8;
}

#simpleTaskList .task-card.task-high-priority,
#simpleNewTask .task-card.task-high-priority {
    border-left: 4px solid #f0ad4e;
    background-color: #fffbf0;
}

#simpleTaskList .task-header,
#simpleNewTask .task-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#simpleTaskList .task-header h4,
#simpleNewTask .task-header h4 {
    margin: 0;
    color: #333;
    font-size: 16px;
}

#simpleTaskList .task-body,
#simpleNewTask .task-body {
    padding: 15px;
}

#simpleTaskList .task-description,
#simpleNewTask .task-description {
    color: #666;
    margin-bottom: 10px;
    font-style: italic;
}

#simpleTaskList .task-info,
#simpleNewTask .task-info {
    margin-top: 10px;
}

#simpleTaskList .info-row,
#simpleNewTask .info-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

#simpleTaskList .info-row i,
#simpleNewTask .info-row i {
    width: 20px;
    color: #666;
    margin-right: 8px;
}

/* Estilos para botones de acciones en tareas */
#simpleTaskList .btn-group .btn,
#simpleNewTask .btn-group .btn {
    margin-right: 2px;
}

#simpleTaskList .btn-group .btn:last-child,
#simpleNewTask .btn-group .btn:last-child {
    margin-right: 0;
}

/* Estilos para acciones en vista móvil de tareas */
#simpleTaskList .task-actions,
#simpleNewTask .task-actions {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

#simpleTaskList .task-actions .btn,
#simpleNewTask .task-actions .btn {
    flex: 1;
    min-width: 80px;
    font-size: 12px;
    margin-right: 5px;
}

#simpleTaskList .task-actions .btn:last-child,
#simpleNewTask .task-actions .btn:last-child {
    margin-right: 0;
}

/* Estilos para pills de estado en tareas */
#simpleTaskList .badge,
#simpleNewTask .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

#simpleTaskList .badge-success,
#simpleNewTask .badge-success {
    background-color: #5cb85c;
    color: white;
}

#simpleTaskList .badge-danger,
#simpleNewTask .badge-danger {
    background-color: #d9534f;
    color: white;
}

#simpleTaskList .badge-warning,
#simpleNewTask .badge-warning {
    background-color: #f0ad4e;
    color: white;
}

#simpleTaskList .badge-info,
#simpleNewTask .badge-info {
    background-color: #5bc0de;
    color: white;
}

/* Estilos para botones de acciones con colores diferenciados en tareas */
#simpleTaskList .btn-success,
#simpleNewTask .btn-success {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

#simpleTaskList .btn-info,
#simpleNewTask .btn-info {
    background-color: #5bc0de;
    border-color: #46b8da;
}

#simpleTaskList .btn-primary,
#simpleNewTask .btn-primary {
    background-color: #337ab7;
    border-color: #2e6da4;
}

#simpleTaskList .btn-danger,
#simpleNewTask .btn-danger {
    background-color: #d9534f;
    border-color: #d43f3a;
}

/* Responsive adjustments para tareas */
@media (max-width: 768px) {

    #simpleTaskList .titleMargin,
    #simpleNewTask .titleMargin {
        margin-bottom: 15px;
    }

    #simpleTaskList .panel-body,
    #simpleNewTask .panel-body {
        padding: 10px;
    }

    #simpleTaskList .form-group,
    #simpleNewTask .form-group {
        margin-bottom: 10px;
    }

    #simpleTaskList .btn-group .btn,
    #simpleNewTask .btn-group .btn {
        padding: 4px 8px;
        font-size: 11px;
    }
}

/*//////////////////////////////////////////////////////////////////
[ TASK DETAIL SPECIFIC STYLES ]*/

/* Estilos específicos para vista de detalle de tareas */
#simpleTaskDetail .info-item {
    margin-bottom: 15px;
}

#simpleTaskDetail .info-item label {
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
    display: block;
}

#simpleTaskDetail .info-item label i {
    margin-right: 5px;
    color: #666;
}

#simpleTaskDetail .info-item p {
    margin: 0;
    color: #333;
}

#simpleTaskDetail .task-description {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 4px;
    border-left: 3px solid #337ab7;
    font-style: italic;
}

#simpleTaskDetail .badge {
    font-size: 12px;
    padding: 5px 10px;
}

#simpleTaskDetail hr {
    margin: 15px 0;
    border-color: #eee;
}

/* Responsive adjustments para detalle de tareas */
@media (max-width: 768px) {
    #simpleTaskDetail .titleMargin {
        margin-bottom: 15px;
    }

    #simpleTaskDetail .panel-body {
        padding: 15px;
    }

    #simpleTaskDetail .info-item {
        margin-bottom: 20px;
    }

    #simpleTaskDetail .btn {
        margin-bottom: 5px;
    }

    #simpleTaskDetail .panel-info,
    #simpleTaskDetail .panel-success,
    #simpleTaskDetail .panel-warning {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    #simpleTaskDetail .panel-body {
        padding: 10px;
    }

    #simpleTaskDetail .info-item label {
        font-size: 14px;
    }

    #simpleTaskDetail .info-item p {
        font-size: 14px;
    }

    #simpleTaskDetail .btn {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/*//////////////////////////////////////////////////////////////////
[ TASK EDIT SPECIFIC STYLES ]*/

/* Estilos específicos para vista de edición de tareas */
#simpleEditTask .form-group {
    margin-bottom: 20px;
}

#simpleEditTask .form-control {
    border-radius: 4px;
    border: 1px solid #ddd;
    padding: 8px 12px;
    font-size: 14px;
}

#simpleEditTask .form-control:focus {
    border-color: #337ab7;
    box-shadow: 0 0 0 0.2rem rgba(51, 122, 183, 0.25);
}

#simpleEditTask label {
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

#simpleEditTask .btn-primary {
    background-color: #337ab7;
    border-color: #2e6da4;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
}

#simpleEditTask .btn-primary:hover {
    background-color: #286090;
    border-color: #204d74;
}

#simpleEditTask .btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

#simpleEditTask .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

#simpleEditTask .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Responsive adjustments para edición de tareas */
@media (max-width: 768px) {
    #simpleEditTask .titleMargin {
        margin-bottom: 15px;
    }

    #simpleEditTask .panel-body {
        padding: 15px;
    }

    #simpleEditTask .form-group {
        margin-bottom: 15px;
    }

    #simpleEditTask .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    #simpleEditTask .panel-body {
        padding: 10px;
    }

    #simpleEditTask .form-control {
        font-size: 16px;
        /* Evita zoom en iOS */
    }

    #simpleEditTask .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* Estilos para tareas repetitivas */
#simpleNewTask .form-group small,
#simpleEditTask .form-group small {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    display: block;
}

#simpleNewTask .form-group input[type="date"]:disabled,
#simpleEditTask .form-group input[type="date"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

#simpleNewTask .form-group select:focus,
#simpleEditTask .form-group select:focus {
    border-color: #337ab7;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102, 122, 226, 0.6);
}

/* Indicador visual para tareas repetitivas */
.task-frequency-indicator {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
}

.task-frequency-daily {
    background-color: #dff0d8;
    color: #3c763d;
}

.task-frequency-weekly {
    background-color: #d9edf7;
    color: #31708f;
}

.task-frequency-monthly {
    background-color: #fcf8e3;
    color: #8a6d3b;
}

/* Indicador de progreso para tareas repetitivas */
#simpleNewTask .alert-info {
    border-left: 4px solid #5bc0de;
    background-color: #f8f9fa;
}

#simpleNewTask .alert-info i.fa-spinner {
    margin-right: 8px;
    color: #5bc0de;
}

#simpleNewTask .alert-info strong {
    color: #31708f;
}

#simpleNewTask .alert-info small {
    color: #666;
    font-style: italic;
}

/* Animación para el spinner */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* Estilos para filtro de rango de fechas */
.date-range-filter {
    position: relative;
}

.date-range-filter .form-control {
    background-color: #fff;
    border: 1px solid #d2d6de;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 14px;
}

.date-range-filter .form-control:focus {
    border-color: #3c8dbc;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(60, 141, 188, 0.6);
}

/* Estilos para el indicador de información del filtro */
.filter-info-alert {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.filter-info-alert .badge {
    background-color: #3c8dbc;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
}

/* Estilos para el date range picker */
.daterangepicker {
    font-family: inherit;
    font-size: 14px;
}

.daterangepicker .ranges li {
    padding: 8px 12px;
    font-size: 13px;
}

.daterangepicker .ranges li.active {
    background-color: #3c8dbc;
}

.daterangepicker .drp-buttons .btn {
    padding: 6px 12px;
    font-size: 13px;
}

/* Responsive para el filtro */
@media (max-width: 768px) {
    .date-range-filter .form-control {
        font-size: 16px;
        /* Evita zoom en iOS */
    }

    .filter-info-alert {
        font-size: 14px;
        padding: 8px 12px;
    }
}

/* Estilos para Mis Tareas */
#myTaskList .task-card.task-in-progress {
    border-left: 4px solid #17a2b8;
    background-color: #f8f9fa;
}

#myTaskList .table-info {
    background-color: #d1ecf1 !important;
}

#myTaskList .btn-group .btn {
    margin-right: 5px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
}

#myTaskList .btn-group .btn:last-child {
    margin-right: 0;
}

#myTaskList .btn-group .btn i {
    margin-right: 5px;
}

#myTaskList .task-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

#myTaskList .task-actions .btn {
    flex: 0 0 auto;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    min-width: 120px;
    text-align: center;
}

#myTaskList .task-actions .btn i {
    margin-right: 5px;
}

#myTaskList .task-actions .text-success {
    flex: 0 0 auto;
    margin-left: 10px;
    font-size: 16px;
    font-weight: 500;
}

#myTaskList .task-actions .text-success i {
    margin-right: 5px;
}

/* Estilos para badges en Mis Tareas */
#myTaskList .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

#myTaskList .badge-success {
    background-color: #5cb85c;
    color: white;
}

#myTaskList .badge-danger {
    background-color: #d9534f;
    color: white;
}

#myTaskList .badge-warning {
    background-color: #f0ad4e;
    color: white;
}

#myTaskList .badge-info {
    background-color: #5bc0de;
    color: white;
}

/* Estilos para indicadores de frecuencia en Mis Tareas */
#myTaskList .task-frequency-indicator {
    display: inline-block;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

#myTaskList .task-frequency-daily {
    background-color: #5bc0de;
    color: white;
}

#myTaskList .task-frequency-weekly {
    background-color: #5cb85c;
    color: white;
}

#myTaskList .task-frequency-monthly {
    background-color: #f0ad4e;
    color: white;
}

/* Estilos para el indicador de tareas pendientes */
#myTaskList .alert-info .badge {
    background-color: #17a2b8;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
}

/* Estilos para botones de acción */
#myTaskList .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

#myTaskList .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

#myTaskList .btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

#myTaskList .btn-success:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
}

#myTaskList .btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
}

#myTaskList .btn-info:hover {
    background-color: #117a8b;
    border-color: #117a8b;
}

/* Responsive para Mis Tareas */
@media (max-width: 768px) {

    #myTaskList .titleMargin,
    #myTaskList h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    #myTaskList .panel-body {
        padding: 10px;
    }

    #myTaskList .form-group {
        margin-bottom: 10px;
    }

    #myTaskList .btn-group .btn {
        padding: 8px 12px;
        font-size: 13px;
        margin-bottom: 5px;
    }

    #myTaskList .task-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    #myTaskList .task-actions .btn {
        margin-bottom: 5px;
        text-align: center;
        min-width: 100%;
        padding: 12px 15px;
        font-size: 16px;
    }

    #myTaskList .task-actions .text-success {
        text-align: center;
        margin: 10px 0;
        font-size: 18px;
    }
}

/* Estilos para scroll horizontal de tabla en simpleTaskList */
#simpleTaskList .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    border: 1px solid #ddd;
}

#simpleTaskList .table-responsive .table {
    margin-bottom: 0;
    width: 100%;
    min-width: 1000px;
}

/* Asegurar que el panel no limite el scroll */
#simpleTaskList .panel-body {
    overflow: visible;
    padding: 15px;
}

#simpleTaskList .col-md-12 {
    overflow: visible;
}

#simpleTaskList .row {
    overflow: visible;
}

/* Micro margen entre botones de acciones */
#simpleTaskList .btn-group .btn {
    margin-right: 2px;
}

#simpleTaskList .btn-group .btn:last-child {
    margin-right: 0;
}

#simpleTaskList .table-responsive::-webkit-scrollbar {
    height: 8px;
}

#simpleTaskList .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

#simpleTaskList .table-responsive::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

#simpleTaskList .table-responsive::-webkit-scrollbar-thumb:hover {
    background: #555;
}

#simpleTaskList .table {
    margin-bottom: 0;
}

#simpleTaskList .table th,
#simpleTaskList .table td {
    white-space: nowrap;
    vertical-align: middle;
    min-width: 120px;
}

#simpleTaskList .table th:first-child,
#simpleTaskList .table td:first-child {
    min-width: 200px;
}

#simpleTaskList .table th:last-child,
#simpleTaskList .table td:last-child {
    min-width: 150px;
}

/* Estilos para preview de imagen de evidencia en tabla */
.evidence-preview {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: transform 0.2s ease;
}

.evidence-preview:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Modal para evidencia */
.evidence-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.evidence-modal.show {
    display: block;
}

.evidence-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.evidence-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .evidence-modal-content {
        width: 90%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .evidence-modal-content {
        width: 95%;
        height: 350px;
    }
}

.evidence-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.evidence-modal-close:hover,
.evidence-modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

/*//////////////////////////////////////////////////////////////////
[ ESTILOS PARA NOTIFICACIONES ]*/

.notification-section {
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-content i {
    font-size: 20px;
}

.header-content h4 {
    margin: 0;
    color: #495057;
    font-weight: 600;
}

.expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expand-icon i {
    color: #6c757d;
    transition: transform 0.3s ease;
}

.section-header:hover .expand-icon {
    background: rgba(0, 0, 0, 0.2);
}

.section-content {
    padding: 20px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.section-content.expanded {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.notification-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.notification-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.medication-card {
    border-left: 4px solid #dc3545;
}

.control-card {
    border-left: 4px solid #ffc107;
}

.control-alert-card {
    border-left: 4px solid #dc3545;
}

.task-card {
    border-left: 4px solid #007bff;
}

.system-card {
    border-left: 4px solid #17a2b8;
}

.card-header {
    background: #f8f9fa;
    padding: 12px 15px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-header i {
    color: #6c757d;
}

.card-header strong {
    flex: 1;
    color: #495057;
}

.card-body {
    padding: 15px;
}

.medication-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 5px 0;
}

.medication-name {
    font-weight: 500;
    flex: 1;
}

.medication-time,
.medication-date {
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.control-item,
.task-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    padding: 5px 0;
}

.control-type,
.task-assigned {
    font-weight: 500;
    flex: 1;
}

.control-date,
.task-due {
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
}

.control-notes,
.task-description {
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 3px solid #dee2e6;
}

.control-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    padding: 5px 0;
}

.control-alert-message {
    font-weight: 500;
    flex: 1;
    color: #dc3545;
}

.control-alert-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #6c757d;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.notification-message {
    margin: 0;
    color: #495057;
    line-height: 1.5;
}

.card-actions {
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    text-align: right;
}

.more-items {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.notification-date {
    font-size: 12px;
    color: #6c757d;
}

/* Responsive para notificaciones */
@media (max-width: 768px) {
    .notification-cards {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}



/* Estilos para botones de acción en notificaciones */
.card-actions .btn {
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    padding: 6px 12px;
}

.card-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Botón para marcar como leída */
.card-actions .btn.btn-mark-read {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.card-actions .btn.btn-mark-read:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Botón para descartar */
.card-actions .btn.btn-discard {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.card-actions .btn.btn-discard:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* Estilos para la lista simplificada de medicaciones */
.medications-list {
    background: white;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.resident-medications {
    border-bottom: 1px solid #f8f9fa;
    padding: 15px;
}

.resident-medications:last-child {
    border-bottom: none;
}

.resident-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.resident-header i {
    font-size: 16px;
    color: #007bff;
}

.resident-header strong {
    flex: 1;
    color: #495057;
    font-size: 16px;
}

.medication-count {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.medications-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.medication-item-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #dc3545;
}

.medication-name {
    font-weight: 500;
    color: #495057;
    flex: 1;
    min-width: 0;
}

.medication-dosage {
    background: #e9ecef;
    color: #6c757d;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.medication-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #6c757d;
    background: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    white-space: nowrap;
}

.medication-time i {
    color: #007bff;
}

/* Asegurar que los iconos de FontAwesome se muestren correctamente */
.fa {
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tamaños de iconos */
.fa-sm {
    font-size: 0.875em;
}

.fa-lg {
    font-size: 1.33em;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

/* Responsive para medicaciones */
@media (max-width: 768px) {
    .resident-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .medication-item-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .medication-time {
        align-self: flex-start;
    }
}

/*//////////////////////////////////////////////////////////////////
[ ESTILOS PARA GESTIÓN DE NOTIFICACIONES ]*/

.notification-management .box {
    margin-bottom: 20px;
}

.notification-management .form-group {
    margin-bottom: 15px;
}

.notification-management .table th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.notification-management .table td {
    vertical-align: middle;
}

.notification-management .unread {
    background-color: #fff3cd !important;
}

.notification-management .unread:hover {
    background-color: #ffeaa7 !important;
}

.notification-management .btn-group .btn {
    margin-right: 2px;
}

.notification-management .btn-group .btn:last-child {
    margin-right: 0;
}

.notification-management .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
}

.notification-management .badge-info {
    background-color: #17a2b8;
    color: white;
}

.notification-management .badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.notification-management .badge-primary {
    background-color: #007bff;
    color: white;
}

.notification-management .badge-danger {
    background-color: #dc3545;
    color: white;
}

.notification-management .badge-success {
    background-color: #28a745;
    color: white;
}

.notification-management .badge-secondary {
    background-color: #6c757d;
    color: white;
}

/* Responsive para gestión de notificaciones */
@media (max-width: 768px) {
    .notification-management .table-responsive {
        font-size: 12px;
    }

    .notification-management .btn-group .btn {
        padding: 2px 4px;
        font-size: 10px;
    }

    .notification-management .badge {
        font-size: 10px;
        padding: 2px 6px;
    }
}