        .page-header h2 {
            margin-bottom: 20px;
            height: 30px;
            font-size: 24px;
        }

        .icons {
            /* Estilos para iconos si es necesario */
        }

        .readmore {
            margin-top: 30px;
        }

        /* Estilos para el Botón */
        .btnMdlTs {
            cursor: pointer;
            border: 1px solid #337ab7;
            padding: 10px 20px;
            /*font-size: 18px;*/
            line-height: 1.42857143;
            border-radius: 6px;
            transition: background-color 0.3s ease;
            background-color: transparent;
            color: #337ab7;
        }

        .btnMdlTs:hover,
        .btnMdlTs:focus,
        .btnMdlTs:active,
        .btnMdlTs.active {
            background-color: #286090;
            color: #fff;
        }

        /* Estilos para el Modal */
        .modalTs {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 101;
        }

        .modalTs-dialog {
            position: relative;
            top: 50%;
            transform: translateY(-50%);
            margin: auto;
            max-width: 85%;
            max-height: 80%;
            padding: 20px;
            background: #fff;
            border-radius: 7px;
            overflow-y: auto;
        }

        .modalTs-title {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .modalTs-body {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .modalTs-footer {
            text-align: right;
        }

        .modalTs-footer button {
            /*margin-left: 10px;
            padding: 10px 20px;*/
            background-color: transparent;
            font-size: 18px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .modalTs-footer button:hover {
            /*background-color: #ccc;*/
            filter: drop-shadow(2px 2px 2px #777);
        }

        .modalTs-footer button.cancel {
            background-color: #ccc;
        }

        .mrkMdlTsJrs {
            margin: 20px; 
            padding: 20px; 
            border: 1px #ccc solid;
            border-radius: 7px;
        }

