/* Estilos para a tela de Detalhes de Moradores */

.morador-card {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem !important;
    border-radius: 12px !important;
    background: var(--pico-card-background-color) !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
    border: 1px solid var(--pico-muted-border-color) !important;
    transition: transform 0.2s ease;
}

.morador-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1) !important;
}

.morador-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--pico-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.morador-info {
    flex-grow: 1;
}

.morador-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.morador-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-proprietario { background: #dcfce7; color: #166534; }
.badge-morador { background: #dbeafe; color: #1e40af; }
.badge-inquilino { background: #fef9c3; color: #854d0e; }

.morador-acoes {
    display: flex;
    gap: 8px;
}

.btn-whatsapp {
    background: #25D366 !important;
    border: none !important;
    padding: 6px !important;
    border-radius: 50% !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
}
