/* Gestión de Arriendos - Frontend Styles */

.gestion-arriendos-frontend {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ga-property-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ga-property-card h3 {
    margin-top: 0;
    color: #333;
}

.ga-property-meta {
    color: #666;
    font-size: 14px;
    margin: 10px 0;
}

.ga-property-price {
    font-size: 24px;
    font-weight: bold;
    color: #2c5aa0;
    margin: 15px 0;
}

.ga-contract-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.ga-contract-status.active {
    background: #d4edda;
    color: #155724;
}

.ga-contract-status.expired {
    background: #f8d7da;
    color: #721c24;
}

.ga-contract-status.pending {
    background: #fff3cd;
    color: #856404;
}

.bt-content-wrap.col-lg-8.col-md-12 {
  all: unset !important;
}

