.main-page {
	display:none;
}

[data-page-id="members"] {
	display:block;
}


.person-image {
	width: 100px;        
    height: 140px;        
    object-fit: cover;    
    overflow: hidden; 
	border:1px solid #dddddd;
}

table {
	max-width:800px;
	width:auto;
	/*margin:40px auto;*/
}

table td {
	padding:8px;
	vertical-align:top;
}

.hashtags {
	color:#777777;
	font-size:14px;
	font-weight:bold;
}

.image-popup {
    position: absolute;
    border: 2px solid #333;
    background: #fff;
    padding: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}
.image-popup img {
    max-width: 200px;
    max-height: 200px;
}

/* Custom styles for responsive member cards */
.member-card {
	display: flex;
	margin-bottom: 30px;
	padding: 20px;
	min-height:280px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background-color: #fff;
	transition: box-shadow 0.3s ease;
}

.member-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.member-image-container {
	flex-shrink: 0;
	margin-right: 20px;
}

.person-image {
	object-fit: cover;
	border-radius: 8px;
}

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

.member-info h2 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 1.5rem;
}

.hashtags {
	color: #666;
	font-style: italic;
	margin-bottom: 10px;
	font-size: 0.9rem;
}

.member-description {
	line-height: 1.6;
}

/* Sort buttons styling */
.btn-group .btn {
	font-size: 0.9rem;
	padding: 0.375rem 1rem;
}

.dropdown-menu {
	max-height: 400px;
	overflow-y: auto;
}

.dropdown-item.hashtag-filter {
	font-size: 0.9rem;
	padding: 0.375rem 1rem;
}

.dropdown-item.hashtag-filter:hover {
	background-color: #f8f9fa;
	color: #007bff;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
	.member-card {
		flex-direction: column;
		text-align: center;
	}

	.member-image-container {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.person-image {
		width: 100px;
		height: 100px;
	}

	.member-info h2 {
		font-size: 1.25rem;
	}

	.btn-group {
		flex-wrap: wrap;
		width: 100%;
	}

	.btn-group .btn {
		font-size: 0.85rem;
		padding: 0.375rem 0.75rem;
	}
}