td.details-control {
    background: url('../images/details_open.png') no-repeat center center;
    cursor: pointer;
}

tr.shown td.details-control {
    background: url('../images/details_close.png') no-repeat center center;
}

._back {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.btn-light-danger {
    background-color: #ca4b7c;
}

.bt_table {
    margin-bottom: 15px;
}
.selectable-ip{
    cursor:pointer;
    text-decoration:underline;
}
.popover {
    max-height: 300px; /* Establece la altura máxima del popover */
    overflow-y: auto; /* Agrega una barra de desplazamiento vertical */
    width:240px
}

/* Estilos para las imágenes en posts recientes */
.sidebar__posts__image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: relative;
}

.sidebar__posts__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilos actualizados para el formulario de comentarios */
.comment-form,
.comments-form__form {
    position: relative;
    display: block;
    background: var(--ienet-white, #ffffff);
    padding: 45px 50px 50px;
    border-radius: var(--ienet-border-radius, 10px);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

.comment-form__title,
.comments-form__title {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 800;
    line-height: 36px;
    text-align: left;
    color: var(--ienet-black, #1c1c27);
}

.comment-form .row,
.comments-form__form .row {
    --bs-gutter-x: 10px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea,
.comments-form__form input[type="text"],
.comments-form__form input[type="email"],
.comments-form__form textarea,
.comments-form__form .bootstrap-select > .dropdown-toggle {
    height: 70px;
    width: 100%;
    border: none;
    background-color: var(--ienet-gray, #F7F5F1);
    padding: 0 30px;
    margin-bottom: 10px;
    border-radius: var(--ienet-border-radius, 10px);
    outline: none;
    font-size: 16px;
    color: var(--ienet-gray-rgb, #6c7176);
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.5s ease;
}

.comment-form textarea,
.comments-form__form textarea {
    height: 150px;
    padding-top: 15px;
    padding-bottom: 30px;
    resize: none;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus,
.comments-form__form input[type="text"]:focus,
.comments-form__form input[type="email"]:focus,
.comments-form__form textarea:focus {
    background-color: var(--ienet-white, #ffffff);
    border: 1px solid var(--ienet-base, #4c35a9);
}

.comment-form .thm-btn,
.comments-form__form .thm-btn {
    background-color: var(--ienet-base, #4c35a9);
    color: var(--ienet-white, #ffffff);
    font-size: 12px;
    padding: 12.5px 40px;
    border: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border-radius: var(--ienet-border-radius, 10px);
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
}

.comment-form .thm-btn:hover,
.comments-form__form .thm-btn:hover {
    background-color: var(--ienet-black, #1c1c27);
    color: var(--ienet-white, #ffffff);
}

/* Estilos para mensajes de éxito/error */
.comment-alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--ienet-border-radius, 10px);
    display: none;
}

.comment-alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.comment-alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

