﻿
#PersonHeader {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(96, 96, 96);
    color: white;
    overflow-x: hidden;
    padding-bottom: 30px;
}

/* Media query example
@media only screen and (max-width: 600px) {

}

@media only screen and (min-width: 600px) {

}

    */

#PersonImage {
    border-radius: 50%;
    border: 5px solid rgb(200,200,200);
}

.opaque30 {
    opacity: 0.3; 
}

#ActionButtons {
    margin-top: 10px; 
    text-align: left;
}

.person-sidebar {
    flex: 0 0 280px;
}

.action-button {
    width: 100%;
    height: 50px;
    padding: 10px;
    padding-left: 2px;
    color: rgb(200,200,200);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.action-button:hover {
    background-color: rgb(120, 120, 120);
    color: white;
}

.action-button-icon {
    text-align: center;
    min-width: 45px;
    font-size: 1.3em;
    margin-left: 5px;
}

.action-button-icon.selected {
    border: 1px solid rgb(170, 170, 170);
    margin-left: 0px;
}

.action-button-text {
    font-size: .9em;
}

.action-button-selected {
    color: white;
    background-color: rgb(170, 170, 170);
    font-weight: bold;
    border-left: 5px solid white;
}

.action-button-selected .action-button-icon {
    margin-left: 0px;
}

.action-button-disabled {
    color: rgb(200,200,200);
    border: 1px solid rgb(200,200,200);
    cursor: default;
}

.action-button-disabled:hover {
    color: rgb(150, 150, 150);
    border: 1px solid rgb(96, 96, 96);
    cursor: default;
}
.pace-navbar {
    transition: all 500ms;
}
.pace-navbar-header {
    height: 100px;
    position: relative;
    padding: 10px;
    width: 250px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
    display: flex;
    align-items: center;
}
