.directory-filters {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.directory-filters > * {
  max-width: 20rem;
  width: 100%;
}

.directory-filters .btn {
	padding: .5rem;
	line-height: 1rem;
	border-radius: 3px;
	font-size: .9rem;
	/* font-family: Arial; */
}

.directory-search-wrapper {
  position: relative;
  flex: 1;
}

#directory-search {
  width: 100%;
  padding: 5px 30px 5px 10px;
}

.directory-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: x-small;
  color: #999;
  user-select: none;
}

.directory-search-clear:hover {
  color: #000;
}

table.directory thead tr{
	font-weight: normal;
	font-size:.9rem;
}
table.directory thead th{
	
	border-bottom:1px solid #999;
}
table.directory thead th.user-profile-picture{
	position:relative;
	border:0;
}

table.directory tbody tr{
	background-color:#fff;
	vertical-align:middle;
	line-height: 1rem;
}

table.directory tbody tr:nth-child(odd){
	background-color:#f6f7f7;
} 
table.directory tbody tr.excluded{
	background-color:#999;
}
table.directory tbody td:not(.user-profile-picture){
	border-bottom:1px solid #999;
	padding:.2rem 1rem;
} 
table.directory tbody td.user-profile-picture{
	border:0;
	background-color:#fff;
	
	padding:.2rem;
} 
table.directory tbody td.user-profile-picture img{
	border-radius:25px;
} 
table.directory tbody td .toolbox{
	font-size:x-small;
}

table.directory tbody td .toolbox .directory-toggle-user-visibility{
	cursor: pointer;
}

table.directory tbody td div {
	margin-bottom:.3rem;
}

table.directory tbody td .ifa_absence {
	font-style: italic;
	font-size: smaller;
}


#group-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.group-modal {
    background: white;
    padding: 20px 30px;
    border-radius: 1px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: relative;
}

.group-modal h2 {
    margin-top: 0;
}

.group-modal .close-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.actions {
    margin-top: 4px;
}

.actions .dashicons {
    font-size: 18px;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
    color: #0073aa;
}

.actions .dashicons:hover {
    color: #00a0d2;
}
