.mw-header {
    text-align: center;
}

.mw-header .mw-adress-input-wrap {
    float: none;
    overflow: hidden;
    padding-top: 5px;
    margin: auto;
    width: 100% !important;
}

/* Alert container */
.alert-container {
    padding-top: 60px;
    padding-bottom: 25px;
    background-color: #fff;
}

/* Leaflet */
.leaflet-container {
    height: 400px;
    width: 100%;
    z-index: 0;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    height: 45px;
    padding: 0 12px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

/* Multiple images */
.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Featured box */
.item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Featured box - altura consistente en todos los tamaños */
.featured-box {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 500px !important;
    margin-bottom: 30px !important;
}

.featured-box figure {
    height: 229px !important;
    flex-shrink: 0 !important;
    margin-bottom: 0 !important;
}

.featured-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

.feature-content .product {
    margin-bottom: 10px !important;
}

.feature-content h4 {
    min-height: 48px !important;
    margin-bottom: 10px !important;
    display: flex !important;
    align-items: center !important;
}

.feature-content .meta-tag {
    margin-bottom: 10px !important;
}

.feature-content .dsc {
    flex-grow: 1 !important;
    margin-bottom: 15px !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
}

.feature-content .listing-bottom {
    margin-top: auto !important;
    padding-top: 10px !important;
}

/* Asegurar espacio entre filas de objetos */
.featured .row,
section.featured .row,
.row.featured {
    margin-bottom: 0;
    margin-left: -15px;
    margin-right: -15px;
}

.featured .row > div[class*="col-"]:has(.featured-box),
section.featured .row > div[class*="col-"]:has(.featured-box),
.row.featured > div[class*="col-"] {
    margin-bottom: 40px !important;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 20px;
}

/* Asegurar que las columnas no colapsen */
.featured .row::after,
section.featured .row::after,
.row.featured::after {
    content: "";
    display: table;
    clear: both;
}

/* Pie de tarjeta: sin altura mínima forzada (evita aire vacío bajo la fila) */
.featured-box .listing-bottom {
    min-height: 0;
    overflow: visible !important;
}

.featured-box .listing-bottom .condition-badge {
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: visible !important;
}

/* Altura consistente en list-view */
#list-view .featured-box {
    min-height: 280px !important;
}

#list-view .featured-box figure {
    height: 200px !important;
}

#list-view .feature-content .dsc {
    -webkit-line-clamp: 2 !important;
}

/* Altura consistente en grid-view */
#grid-view .featured-box {
    min-height: 500px !important;
}

#grid-view .feature-content .dsc {
    -webkit-line-clamp: 3 !important;
}

/* Sidebar box */
.sidebar-box .user figure img {
    max-width: 72px;
}

/* Objet status */
.adstatus {
    min-width: 100px;
    max-width: 150px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 8px;
    line-height: 1.4;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}

.adstatus-draft {
    color: #363b4d;
    background: #f7f7f7
}

.adstatus-disabled {
    color: #363b4d;
    background: #f7f7f7
}

/* Estados de objetos */
.adstatus-rejected {
    background: #f91942
}

.adstatus-in_review {
    background: #fc9209
}

.adstatus-published {
    background: #e91e63
}

.adstatus-resolved {
    background: #363b4d
}

/* Estados de coincidencias (ObjectMatch) */
.adstatus-pending {
    background: #ffc107;
}

.adstatus-notified {
    background: #17a2b8
}

.adstatus-inactive {
    background: #6c757d
}

.adstatus-abandoned {
    background: #6c757d
}

.adstatus-resolved_by_other_means {
    background: #28a745
}

/* Object details */
/* Location map */
.location-map {
    margin: 20px 0;
}

#objectmap {
    height: 400px;
    width: 100%;
}

/* Action buttons container */
.details-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.details-meta span {
    display: inline-flex;
    align-items: center;
}

.details-meta .action-buttons {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Favorite button */
.favorite-btn {
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #dc3545;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.favorite-btn.active {
    background-color: #dc3545;
}

.favorite-btn i {
    color: #dc3545;
    margin-right: 0 !important;
}

.favorite-btn.active i {
    color: #fff;
}

.favorite-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Resolve button */
.resolve-btn {
    margin-left: 10px;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #28a745;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.resolve-btn.resolved {
    background-color: #28a745;
    cursor: default;
}

.resolve-btn i {
    color: #28a745;
    margin-right: 0 !important;
}

.resolve-btn.resolved i {
    color: #fff;
}

.resolve-btn:not(.resolved):hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.resolve-btn.resolved:hover {
    opacity: 1;
    transform: none;
}

/* Dashboard table */
.dashboardtable tbody tr:hover .btn-view {
    background: #fc9209;
    color: #fff;
}

.dashboardtable tbody tr:hover .btn-resolve {
    background: #00cc67;
    color: #fff;
}

/* Estilos para el logo animado */
.logo-text {
    /* Estilos base que funcionan en todos los navegadores */
    font-size: 24px;
    font-weight: bold;
    color: #ff1b6b;
    position: relative;
    display: inline-block;
    text-decoration: none;
    /* Fallback para navegadores que no soportan transitions */
    cursor: pointer;
    /* Soporte para múltiples navegadores */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    /* Prevenir selección de texto */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.logo-text span {
    color: #ff1b6b;
    /* Soporte para múltiples navegadores */
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Usar @supports para detectar soporte de transform */
@supports (transform: translateY(-2px)) {
    .logo-text:hover {
        text-decoration: none;
        -webkit-transform: translateY(-2px);
        -moz-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
    }
}

/* Fallback para navegadores que no soportan @supports */
.logo-text:hover {
    text-decoration: none;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff1b6b;
    /* Soporte para múltiples navegadores */
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.logo-text:hover::after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* Estilos específicos para el logo en el footer */
.footer-logo .logo-text {
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

/* Estilos para botones de moderación */
.moderation-actions {
    margin-top: 1rem;
}

.moderation-actions .btn {
    margin-right: 0.5rem;
}

.moderation-actions .btn i {
    margin-right: 0.25rem;
}

/* Badges de estado */
.badge-owner {
    background-color: #e91e63;
    color: white !important;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
}

.badge-owner i {
    font-size: 0.875rem;
}

.badge {
    font-size: 85%;
    font-weight: 600;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0.35em 0.65em;
    line-height: 1;
    vertical-align: baseline;
}

.badge-in_review {
    background-color: #ffc107;
    color: #212529 !important;
}

.badge-published {
    background-color: #28a745;
    color: #fff !important;
}

.badge-rejected {
    background-color: #dc3545;
    color: #fff !important;
}

.badge-resolved {
    background-color: #17a2b8;
    color: #fff !important;
}

.badge-draft {
    background-color: #6c757d;
    color: #fff !important;
}

.badge-disabled {
    background-color: #dc3545;
    color: #fff !important;
}

/* Notas de moderación */
.moderation-notes {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    width: 100%;
}

.moderation-notes small {
    display: block;
    line-height: 1.4;
}

/* Botones de acción */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.action-buttons .favorite-btn,
.action-buttons .resolve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease;
}

.action-buttons .favorite-btn:hover,
.action-buttons .resolve-btn:hover,
.action-buttons .report-action:hover {
    background-color: #e9ecef;
    color: #dc3545;
}

.action-buttons .favorite-btn.active {
    background-color: #dc3545;
    color: #fff;
}

.action-buttons .resolve-btn.resolved {
    background-color: #28a745;
    color: #fff;
    pointer-events: none;
}

/* Widget de acciones */
.actions-widget {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.actions-widget .widget-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-bottom: 1px solid #eee;
}

.actions-widget .widget-title:before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background: #e91e63;
}

.actions-widget .widget-content {
    padding-top: 10px;
}

/* Contenedor de botones de acción */
.action-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 32px;
}

/* Botón de favoritos */
.favorite-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #e91e63;
    color: #e91e63;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.favorite-action i {
    margin-right: 8px;
    font-size: 18px;
}

.favorite-action:hover {
    background-color: #e91e63;
    color: #fff;
    transform: translateY(-2px);
}

.favorite-action.active {
    background-color: #e91e63;
    color: #fff;
}

/* Botones de moderación */
.moderation-actions {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.moderation-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.moderation-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.moderation-btn.approve {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.moderation-btn.approve:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
}

.moderation-btn.reject {
    background-color: #dc3545;
    color: #fff;
    border: 2px solid #dc3545;
}

.moderation-btn.reject:hover {
    background-color: #c82333;
    border-color: #c82333;
    transform: translateY(-2px);
}

/* Botón de resolución */
.resolve-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #17a2b8;
    color: #17a2b8;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.resolve-action i {
    margin-right: 8px;
    font-size: 18px;
}

.resolve-action:hover {
    background-color: #17a2b8;
    color: #fff;
    transform: translateY(-2px);
}

.resolve-action.resolved {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    pointer-events: none;
}

/* Separador de acciones */
.actions-divider {
    height: 1px;
    background: #e9ecef;
    margin: 15px 0;
    width: 100%;
}

/* Botón de denuncia */
.report-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #fff;
    border: 2px solid #ffc107;
    color: #ffc107;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.report-action:hover {
    background-color: #ffc107;
    color: #fff;
    transform: translateY(-2px);
}

.report-action i {
    margin-right: 10px;
    font-size: 18px;
}

.fixed-top {
    top: 39px;
}

/* CTA "Registrarse" en la barra superior */
.header-top-right .header-top-button--signup {
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: #fff !important;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 50px;
    margin-left: 6px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.35);
}

.header-top-right .header-top-button--signup:hover,
.header-top-right .header-top-button--signup:focus {
    color: #fff !important;
    background: linear-gradient(45deg, #d81b60, #e91e63);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.45);
    transform: translateY(-1px);
}

.header-top-right .header-top-button--signup i,
.header-top-right .header-top-button--signup:hover i,
.header-top-right .header-top-button--signup:focus i {
    color: #fff !important;
}

/* Sombra en CTAs principales: Publicar, login y registro */
.navbar .post-btn .btn.btn-common,
.login-area .btn.btn-common.log-btn {
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.35);
    transition: all 0.3s ease;
}

.navbar .post-btn .btn.btn-common:hover,
.navbar .post-btn .btn.btn-common:focus,
.login-area .btn.btn-common.log-btn:hover,
.login-area .btn.btn-common.log-btn:focus {
    color: #fff;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.45);
    transform: translateY(-1px);
}

.details-box .ads-details-info .details-meta span {
    display: inline-flex;
}

.details-box {
    margin-top: 0;
    margin-bottom: 60px;
}

.ads-details-wrapper {
    margin-bottom: 60px;
}

/* Badges para condiciones de objetos */
.badge.badge-lost {
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.badge.badge-found {
    background: linear-gradient(45deg, #28a745, #34ce57);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

/* Estilos comunes para los badges de condición */
.condition-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    text-align: center;
    padding: 0.5em 1em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    border-radius: 50rem;
    transition: all 0.3s ease;
    color: #fff !important;
    white-space: nowrap;
}

/* Estilos para la lista de objetos relacionados */
.posts-list li {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Eliminar borde del último elemento */
.posts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Estilo para la miniatura */
.posts-list .widget-thumb {
    flex: 0 0 120px;
    height: 68px;  /* Ajustado para proporción 16:9 */
    border-radius: 8px;
    overflow: hidden;
}

.posts-list .widget-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido a la derecha */
.posts-list .widget-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;  /* Distribuye el espacio verticalmente */
}

/* Título */
.posts-list .widget-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    line-height: 1.2;
}

.posts-list .widget-content h4 a {
    color: #333;
    text-decoration: none;
}

/* Meta información */
.posts-list .meta-tag {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.posts-list .meta-tag span {
    margin-right: 12px;
}

/* Estilos para meta-tag en listados generales */
.meta-tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.meta-tag .badge {
    margin: 0;
    vertical-align: middle;
}

/* Estilos para listing-bottom */
.listing-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.listing-bottom .condition-badge {
    margin: 0;
    flex-shrink: 0;
}

.listing-bottom .float-left {
    float: none;
}

.listing-bottom .float-right {
    float: none;
}

/*
 * Tarjetas de listado (inicio / categorías): chip de condición + CTA con la misma escala
 * (pastilla informativa + botón con radio moderado, misma altura útil).
 */
.featured-box .listing-bottom .condition-badge.badge {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 0.4375rem 0.75rem;
    min-height: 2.25rem;
    min-width: 0;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border-radius: 50rem;
}

.featured-box .listing-bottom .btn.btn-common {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 0.4375rem 0.875rem;
    min-height: 2.25rem;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-transform: none;
    letter-spacing: 0.02em;
    position: static;
    top: auto;
    right: auto;
    width: auto;
}

/* Badge de condición */
.posts-list .condition-badge {
    display: flex !important;
    align-self: flex-start;  /* Alinea al inicio del contenedor */
    margin-top: 6px;
    font-size: 11px;
    padding: 4px 12px;
    min-width: 90px;
    text-align: center;
}

.section-title {
    text-align: unset;
    margin-left: 90px;
}

.btns-actions .btn-action i {
    display: unset;
    line-height: unset;
}

/* Word Wrap */
.container,
.container-fluid,
.card,
.card-body,
.modal-body,
.form-control,
.alert,
.badge,
.navbar-brand,
.dropdown-menu {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6,
p, span, div, a,
.feature-content,
.widget-content,
.posts-list .widget-content h4,
.posts-list .widget-content h4 a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.long-text,
.url-text,
.code-text,
.object-title,
.object-description,
.email-text,
.confirmation-code {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.featured-box .feature-content h4,
.featured-box .feature-content p,
.details-box .ads-details-info h2,
.details-box .ads-details-info p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

a[href^="http"],
a[href^="mailto:"],
.url-link {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.form-control,
.form-group input,
.form-group textarea,
.form-group select {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.table td,
.table th {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 200px;
}

/* Asegurar que las tablas del dashboard ocupen el 100% del ancho en pantallas grandes */
@media (min-width: 1200px) {
    .dashboard-wrapper .table-responsive,
    .table-responsive {
        width: 100% !important;
        overflow-x: visible;
        display: block;
    }

    .dashboard-wrapper .table,
    .table-responsive .table {
        width: 100% !important;
        table-layout: fixed;
        margin: 0;
    }

    /* Remover max-width de las celdas en tablas del dashboard en pantallas grandes */
    .dashboard-wrapper .table td,
    .dashboard-wrapper .table th,
    .table-responsive .table td,
    .table-responsive .table th {
        max-width: none !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        /* Mantener padding por defecto de Bootstrap para celdas normales */
        padding: 0.75rem !important;
    }

    /* Controlar la columna de Acciones para evitar desbordamiento */
    .dashboard-wrapper .table th:last-child,
    .dashboard-wrapper .table td:last-child,
    .table-responsive .table th:last-child,
    .table-responsive .table td:last-child {
        width: 180px !important;
        min-width: 180px;
        max-width: 180px;
        overflow: hidden;
        padding: 0.5rem !important; /* Padding reducido pero no cero para la última columna */
        box-sizing: border-box;
    }

    /* Asegurar que el contenedor de botones se envuelva y respete el ancho */
    .dashboard-wrapper .table td:last-child .btns-actions,
    .table-responsive .table td:last-child .btns-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        justify-content: flex-start;
        align-items: center;
        align-content: flex-start;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Ajustar tamaño de botones de acción en pantallas grandes */
    .dashboard-wrapper .table td:last-child .btn-action,
    .table-responsive .table td:last-child .btn-action {
        flex: 0 0 auto;
        min-width: 30px;
        width: 30px;
        height: 30px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        margin: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Asegurar que los iconos dentro de los botones no se desborden */
    .dashboard-wrapper .table td:last-child .btn-action i,
    .table-responsive .table td:last-child .btn-action i {
        font-size: 13px;
        line-height: 1;
        display: block;
        margin: 0;
    }
}

.list-group-item,
.posts-list li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}
