/* public_html/categorias_detalle/assets/categorias.css */

.widget-property-detail { margin-top: 20px; }

/* Header de la sección con botón */
.tab-listing-all { display:flex; align-items:center; gap:12px; justify-content:space-between; }
.tab-actions { display:flex; align-items:center; gap:8px; }
.btn-toggle-votos{
    display:inline-flex; align-items:center; gap:8px;
    padding:6px 12px; border:1px solid #ddd; border-radius:6px;
    text-decoration:none; font-size:14px; background:#fff; cursor:pointer;
}
.btn-toggle-votos:hover{ border-color:#bbb; }

/* Chips de votos: oculto por defecto, visible cuando el body tiene .show-votes */
.vote-chip{ display:none; align-items:center; gap:6px; padding:2px 8px; border:1px solid #BE965DFF; border-radius:999px; font-size:16px; background:#fff; margin-left:8px; }
.pos-badge{ display:inline-block; min-width:22px; text-align:center; font-weight:700; font-size:16px; border-radius:999px; padding:2px 6px; border:1px solid #BE965DFF; }
body.show-votes .vote-chip{ display:inline-flex; }


.vote-chip,
.vote-chip * {
    color: #6e6e6e; /* o el color que quieras fijo */
}

.pos-badge {
    color: #6e6e6e; /* igual aquí */
}

.icon-favorite { display:flex; align-items:center; }
.icon-favorite .icon-heart-1-1{ font-size:18px; }

.gallary-property-details { overflow: hidden; margin-bottom: 10px; }
.widget-property-detail .wrap-description { margin-bottom: 15px; }

/* Botón votar simple */
/* Botón votar simple */
.btn-votar {
    padding: 6px 6px;
    border-radius: 6px;
    background: #A60909FF;
    color: #fff; /* ✅ Forzar texto blanco en ambos casos */
    cursor: pointer;
    font-size: 14px;
    text-decoration: none; /* ✅ Quitar subrayado si es enlace */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-votar:hover {
    border-color: #a60909;
    color: #fff; /* Mantener blanco en hover */
}
/* Estilos generales de tu modal personalizado */
.voto-ok-modal .modal-content.custom-vote-modal {
    background: #f9f9f9;     /* fondo gris claro */
    border-radius: 12px;     /* bordes redondeados */
    border: 2px solid #198754; /* verde Bootstrap */
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.voto-ok-modal h4 {
    color: #198754; /* verde Bootstrap */
    font-size: 1.5rem;
}

.voto-ok-modal p {
    font-size: 1.1rem;
    color: #333;
}

.voto-ok-modal .btn {
    min-width: 140px;
    font-weight: 600;
}
