/* SafeHaven - User Management Page View-Specific Styles */

/* This file complements UserManagement.css */
.user-management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.user-search-box {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    width: 300px;
    font-size: 1rem;
}

.user-search-box:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.user-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th {
    background: #f3f4f6;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #374151;
}

.user-table td {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.user-role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.user-role-badge.admin {
    background: #dbeafe;
    color: #1e40af;
}

.user-role-badge.evacuee {
    background: #d1fae5;
    color: #065f46;
}
