/* Modern Member List CSS */

.page-header {
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.breadcrumb-modern {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: #6c5ce7;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: #a0aec0;
}

.search-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.search-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-header {
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: center;
}

.search-header i {
    color: #6c5ce7;
    margin-right: 10px;
}

/* Form Control Fixes */
.form-control {
    height: 45px !important;
    /* Ensure height is sufficient */
    padding: 10px 15px !important;
    font-size: 1rem;
}

select.form-control {
    height: 45px !important;
    line-height: 1.5;
    background-position: right 1rem center;
    /* If using custom arrow */
}

/* Input Group Fixes matching new height */
.input-group-text {
    border: none;
    background-color: #f8f9fa;
    /* bg-light equivalent */
}

.table-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.modern-table thead th {
    background: #f8f9fa;
    border: none;
    color: #4a5568;
    font-weight: 600;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.modern-table tbody td {
    padding: 15px 20px;
    vertical-align: middle;
    color: #4a5568;
    border-bottom: 1px solid #f1f5f9;
}

.modern-table tbody tr:hover {
    background-color: #f8fafc;
}

.member-avatar-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-alive {
    background: #c6f6d5;
    color: #22543d;
}

.status-dead {
    background: #edf2f7;
    color: #4a5568;
}

.gender-icon {
    font-size: 1.1rem;
}

.gender-male {
    color: #4299e1;
}

.gender-female {
    color: #ed64a6;
}

.pagination {
    margin-top: 20px;
}

.page-item .page-link {
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    color: #4a5568;
    font-weight: 600;
}

.page-item.active .page-link {
    background: #6c5ce7;
    color: white;
    box-shadow: 0 4px 10px rgba(108, 92, 231, 0.3);
}