/* --------------------------- */
/*     NOTIFICATIONS DESIGN    */
/* --------------------------- */

.notify__area {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.notify__item {
    display: flex !important;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #222;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.notify__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.notify__thumb {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 14px;
    background: #00a585;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notify__content {
    flex: 1;
}

.notify__content .title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.notify__content .date {
    font-size: 12px;
    color: #888;
}

.unread--notification {
    border-left: 4px solid #00a585;
    background: #f1fbf8;
}

/* Nuevo 9-3-2026 */

.card-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}
.info-grid-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    border-bottom: 1px solid #e5e5e5;
}
.info-cell {
    padding: 14px;
}
.divider-vertical {
    background: #e5e5e5;
}
.field-label {
    font-weight: 600;
    text-align: left;
    margin-bottom: 6px;
}
.field-value {
    text-align: center;
}
.info-cell-flex {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-box-padded {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
}
.expert-grid {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 20px;
    align-items: start;
}
.expert-name-block {
    font-size: 18px;
    margin-bottom: 12px;
}
.expert-rating {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.expert-email {
    margin-bottom: 18px;
}
.expert-photo-wrap {
    display: flex;
    justify-content: center;
}
.expert-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e5e5;
}
/* Tabla datos experto */
.expert-table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
}

.expert-td {
    border: 1px solid #e5e5e5;
    padding: 12px;
}

.expert-td-half {
    width: 50%;
}

.table-label {
    font-weight: 600;
    display:inline;
}

.table-value {
    display:inline;
    margin-left:6px;
}

/* Botón completar */
.btn-complete {
    background-color: #04A687;
    color: #fff;
}

.btn-complete:hover {
    color: #000;
}

/* Botón chat */
.btn-chat {
    display: inline-block;
    padding: .375rem .75rem;
    background-color: #484144;
    color: #fff !important;
    border: 1px solid #000;
    border-radius: 0.25rem;
    text-decoration: none;
}

/* Botón copiar iframe */
.copy-btn-iframe {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 1px solid #ccc;
    z-index: 2;
    padding: 0.25rem 0.80rem;
}

/* Modal footer grid */
.modal-footer-grid {
    grid-template-columns: 1fr 1fr;
}

/* Botones modal */
.modal-btn {
    font-size: 1rem;
}
/* Editor Trix */
.trix-editor-custom {
    background: #fff;
    min-height: 650px;
}

/* Texto final visualización */
.validation-content-box {
    min-height: 600px;
    padding: 20px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow-y: auto;
}

/* Oculto por defecto */
.hidden {
    display: none;
}

/* caja más compacta */
.iframe-config-box{
    padding:20px 24px;
}

/* título */
.iframe-config-box h5{
    font-size:16px;
    margin-bottom:15px;
}

/* filas */
.iframe-config-box .form-group{
    margin-bottom:10px;
}

/* labels */
.iframe-config-box label{
    font-size:14px;
    margin-bottom:3px;
}

/* input texto */
.iframe-config-box input[type="text"]{
    height:34px;
    font-size:14px;
}

/* botón guardar */
.iframe-config-box .btn--base{
    padding:6px 16px;
    font-size:13px;
}
/* centrar contenido de filas que ocupan toda la tabla */
.info-grid-row.single {
    grid-template-columns: 1fr;
}

.info-grid-row.single .divider-vertical {
    display: none;
}

.info-grid-row.single .info-cell {
    text-align: center;
}

.info-grid-row.single .field-value {
    text-align: center;
}
.link-visible{
    color:#0d6efd;
    text-decoration:underline;
    word-break:break-all;
}
.client-inline .info-cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-inline .field-label {
    margin-bottom: 0;
}
@media (max-width: 768px) {

    .info-grid-row{
        display:block;
        border-bottom:1px solid #e5e5e5;
        padding:14px 0;
    }

    .info-cell{
        width:100%;
        margin-bottom:12px;
        padding-bottom:12px;
        border-bottom:1px solid #eee;
    }

    .info-cell:last-child{
        border-bottom:none;
        margin-bottom:0;
        padding-bottom:0;
    }

    .divider-vertical{
        display:none;
    }

    .field-label{
        font-size:13px;
        color:#777;
        margin-bottom:4px;
    }

    .field-value{
        font-size:15px;
        font-weight:500;
    }
    .expert-grid{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

    .expert-photo-wrap{
        align-self:center;
    }

    .expert-photo{
        width:80px;
        height:80px;
    }
    .expert-table{
        border:none;
    }

    .expert-table tr{
        display:block;
    }

    .expert-table td{
        display:block;
        width:100% !important;
        border:none;                 /* quitamos bordes */
        border-bottom:1px solid #e5e5e5;  /* solo separador */
        padding:14px 0;
    }

   .expert-table tr:last-child td:last-child{
        border-bottom:none;
    }


}
.expert-photo{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
}
.expert-email{
    word-break:break-word;
    font-size:14px;
}
.expert-name-block{
    font-size:16px;
    line-height:1.4;
    word-break:break-word;
}
.table-label{
    word-break: normal;
    white-space: normal;
}
.expert-table td{
    width:50%;
    vertical-align:top;
}


.read-more-btn{
    font-size:13px;
    color:#0d6efd;
    cursor:pointer;
    text-decoration:underline;
}
.description-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
}

.description-text{
flex:1;

}

.btn-read-more{
font-size:12px;
padding:2px 8px;
white-space:nowrap;
}
.status-center{
display:flex;
justify-content:center;
align-items:center;
}
.links-list{
    list-style:none;
    padding-left:0;
    margin-top:8px;
    text-align:left;
}

.links-list li{
    margin-bottom:6px;
    padding-left:12px;
    position:relative;
}

.links-list li::before{
    content:"-";
    position:absolute;
    left:0;
    color:#666;
}

.link-visible{
    color:#0d6efd !important;
    text-decoration:underline !important;
    word-break:break-all;
}
.description-text.limited{
max-width:420px;
display:inline-block;
}
/* ========================= */
/*     BANNER BOTONES HOME   */
/* ========================= */

.banner-buttons-custom {
    margin-top: 40px;
}

.banner-btn {
    padding: 11px 23px;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    display: inline-block;
}

/* Botón gris */
.banner-btn-grey {
    background-color: #1E242D;
    color: #E6EFED;
}

/* Botón verde */
.banner-btn-green {
    background-color: #00AB84;
    color: #fff;
}

/* Hover */
.banner-btn-grey:hover {
    background-color: #2C3442;
}

.banner-btn-green:hover {
    background-color: #00C495;
}
/* Hover con color de texto correcto */
.banner-btn-grey:hover {
    background-color: #2C3442;
    color: #ffffff; /* 👈 AÑADIR ESTO */
}

.banner-btn-green:hover {
    background-color: #00C495;
    color: #ffffff; /* por seguridad */
}
/* ========================= */
/*        BANNER SEARCH      */
/* ========================= */

.banner-search-flex {
    display: flex;
    align-items: center;
    width: 100%;
}

.banner-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px;
    min-width: 0;
}

.banner-search-btn {
    flex-shrink: 0;
    margin-left: 8px;
    padding: 8px 14px;
    font-size: 14px;
}
/* Responsive buscador */
@media (max-width: 768px) {

    .banner-search-btn {
        padding: 6px 12px !important;
        font-size: 13px !important;
    }

    .banner-search-input {
        font-size: 15px;
        padding-right: 6px;
    }
}