/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 16 Dec, 2020, 9:59:14 AM
    Author     : Jawahar
*/

.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.tab-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.tab-active, .accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: #fafafa;
  max-height: 0;
  height:auto;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

button.accordion:focus {
    outline: 0 !important;
}

.staff-group-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.staff-container{
    margin:5px;
    
    min-width: 250px;
    min-height: 300px;
    
    width:250px;
    height:320px;
    
    /*border:solid 1px #8a8a8a;*/
    border:solid 1px #878787;
    padding:5px;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.prompt{
    font-weight: bold;
    font-size: 0.7rem;
    /*min-width: 100px;*/
    /*display:inline-block;*/
}

.separator{
    font-weight: bold;
    font-size: 0.7rem;
    min-width: 10px;
    text-align: center;
    margin-left: 2px;
    margin-right:2px;    
}

.value{
    font-style: italic;
    font-size: 0.7rem;
    /*display:inline-block;*/
}

.faculty-snap{
    min-height: 200px;
    height:200px;
    
    min-width: 150px;
    width:150px;
    
    border:solid 5px white;
    margin-bottom: 10px;
    object-fit: cover;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color:navy!important;
    color:white!important;
}