/* Empty States CSS */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
    color: #666;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--tenant-accent, #d4af37);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.empty-state-message {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    max-width: 400px;
}

/* Estilos do botão CTA movidos para property-cards.css para evitar duplicação */

/* Loading States */
.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #999;
    font-size: 1.1rem;
}

.loading-placeholder i {
    margin-right: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}