body {
    font-family: 'Inconsolata', monospace;
    font-size: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    --main-color2: #c4d7e9; /* dark green (bold) */
    --main-color1: #353A3F; /* clear green (links) */
    --main-color3: #add8e6; /* very clear green (background) */
}
section:before {
    height: 4.5rem;
    content: "";
    display: block;
    margin-top: -4.5rem;  /* negative margin equal to the header height */
    visibility: hidden;
    content: "";
}
.vertical { 
    border-left: 1px solid var(--main-color2);
    color: white; 
    height: 4rem;
}
.horizontal-top { 
    border-top: 1px solid var(--main-color2);
}
.horizontal-bottom { 
    border-bottom : 1px solid var(--main-color2);
}
.grey-color {
    color : var(--main-color2);
}
B {
    color : var(--main-color1);
}
.navbar-light .navbar-nav .nav-link {
    color: var(--main-color2);
    font-size: 1.5rem;
    font-weight: normal;
}
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--main-color2);
    text-decoration: underline;
}
.fa-at{
    color:var(--main-color1);
}
.fa-phone-alt {
    color:var(--main-color1);
}
.fa {
    color:var(--main-color1);
}
.fa:hover {
    color:var(--main-color2);
}
.fas {
    color:var(--main-color1);
}
.fas:hover {
    color:var(--main-color2);
}
.fab {
    color:var(--main-color1);
}
.fab:hover {
    color:var(--main-color2);
}
.fa-home{
    color: var(--main-color2);
}
.fa-home:hover{
    color: var(--main-color2);
}
.ai {
    color:var(--main-color1);
}
.ai:hover {
    color:var(--main-color2);
}
a {
    color: var(--main-color1);
    font-weight: bold;
}
a:hover {
    color: var(--main-color2);
    text-decoration: underline;
}
.vertical-title-bar {
    border-left: 6px solid var(--main-color2);
    padding-left: 10px;
}
table td, table td * {
    vertical-align: top;
}

tr.entry>td {
  padding-bottom: 0.5rem;
}

.bib {
    line-height: 18px;
    height: 18px;
}
.bib:hover {
    line-height: 18px;
    height: 18px;
}
.noshown {
    display: none;
}
.shown {
    display: block;
}
.bibtex-col{
    font-size: 0.7rem;
    color: var(--main-color2);
    padding-left: 1em;
    background-color: var(--main-color3);
}
.highlight{
    border-top:2px solid grey;
    border-bottom:2px solid grey;
}
.alert-success {
    color: black;
}
.alert-success{
    background-color: var(--main-color3);
    border-color: var(--main-color2)
}

.flip-card {
    max-width: 200px;
    aspect-ratio : 1 / 1;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    background-color: var(--main-color2);
    color: var(--main-color1);
    transform: rotateY(180deg);
    border: 1px solid rgb(218, 222, 218);
}

.img-hero{
    height: 100%;
    width: 100%;
}

strong {
    color: red;
    font-size: large;
}

/* Custom styles for member and alumni cards */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid var(--main-color2);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}

.card-body {
    padding: 1.5rem;
}

.card-text {
    margin-bottom: 0;
    line-height: 1.6;
    color: #333;
}

.card-text strong {
    color: var(--main-color1);
    font-size: inherit;
}

.card-text em {
    color: #666;
    font-style: italic;
}