@import "/public/tools/basics.css";

.left-panel {
    background-color: var(--color-charcoal);
    height: 100vh;
    width: 300px;
}

.left-panel-title-panel {
    background-color: var(--color-charcoal);
    width: 300px;
    height: 75px;
}

.left-panel-title-image {
    background-image: url("/public/images/basic-icon3.png");
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: contain;
}

.left-panel-title-text {
    color: white;
    font-size: 22px;
}

.left-panel-separator {
    height: 2px;
    background-color: var(--color-slate-gray);
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 12px;
}

.left-panel-item-panel {
    margin-left: 0;
    margin-right: 0;
    cursor: pointer;
}

.left-panel-selected:hover p {
    color:black;
    transition-duration: 0.1s;
}

.left-panel-unselected:hover p {
    color: var(--color-aqua-blue);
    transition-duration: 0.1s;
}

.left-panel-selected {
    background-color: var(--color-aqua-blue);
}
.left-panel-selected div {
    width: 5px;
    background-color: var(--color-lavender);
    margin-right: 5px;
}

.left-panel-unselected {
    background-color: rgba(255, 255, 255, 0);
}

.left-panel-unselected div {
    display: none;
}

.left-panel-item {
    font-size: 20px;
    color: white;
    margin: 5px 0 5px 20px;
}

.main-section {
    width: 100%;
    height: 100vh;
    background-color: #eeeeee;
}

.toolbar-panel {
    height: 75px;
    width: 100%;
    background-color: white;
    flex-shrink: 0;
}

.toolbar-title {
    font-size: 45px;
    cursor: default;
}

.toolbar-profile-panel {
    margin-right: 20px;
}

.toolbar-profile-image {
    background-image: url("/public/images/profile-default.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    margin-right: 15px;
    margin-left: 15px;
    flex-shrink: 0;
}

#toolbar-profile-name {
    white-space: nowrap;
}

.toolbar-profile-modal {
    position: absolute;
    width: 300px;
    border-radius: 15px;
    background-color: white;
    overflow: hidden;
    border: 2px var(--color-aqua-blue) solid;
    transform: translateY(100px) translateX(-25px);
    display: none;
    flex-direction: column;
    z-index: 1;
}

.toolbar-profile-modal-profile {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.toolbar-profile-modal-profile-image {
    background-image: url("/public/images/profile-default.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 60px;
    height: 60px;
    border-radius: 100%;
}

.toolbar-profile-modal-profile-text {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 15px;
    font-size: 20px;
    line-height: 17px;
}

.toolbar-profile-modal-profile-text a {
    text-decoration: none;
    font-size: 13px;
    line-height: 0;
    color: var(--color-aqua-blue);
}

.toolbar-profile-modal-profile-text a:hover {
    color: var(--color-lavender);
}

.toolbar-profile-modal-button {
    height: 45px;
    border: none;
    background-color: white;
    cursor: pointer;
}

.toolbar-profile-modal-button:hover {
    background-color: var(--color-slate-gray);
    transition-duration: 0.1s;
}

.toolbar-profile-modal-separator {
    background-color: var(--color-light-gray);
    height: 2px;
}

.toolbar-separator {
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: var(--color-light-gray);
    width: 3px;
}

.toolbar-tools-panel {
    margin: 5px 15px 5px 15px;
    background-color: #ffffff;
    <!--border: var(--color-light-gray) solid 2px;-->
    border-radius: 5px;
    height: 80%;
    width: 100%;
}

.toolbar-tool-button {
    cursor: pointer;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
    width: 30px;
    height: 30px;
}

.toolbar-tool-button:hover {
    background-color: var(--color-light-gray);
}

.toolbar-loading-panel {
    width: 30px;
    height: 30px;
    margin: auto 15px;
}

.content-panel {
    overflow-y: auto;
    width: 100%;
    min-height: calc(100% - 75px);
    display: flex;
    flex-direction: column;
}

.content-inner-panel {
    display: flex;
    flex-direction: column;
    margin: 30px;
    height: auto;
    border-radius: 5px;
    background-color: white;
}

.content-inner-panel-title {
    font-size: 20px;
    margin: 15px 15px 15px 30px;
}

.content-inner-panel-separator {
    background-color: var(--color-light-gray);
    width: 2px;
    margin-top: 15px;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.content-inner-subtitle {
    color: var(--color-slate-gray);
    font-size: 16px;
    margin: auto 15px;
}

.content-inner-column-title-panel {
    display: flex;
    flex-direction: row;
    background-color: #efefef;
    width: 100%;
}

.content-inner-column-title {
    font-size: 16px;
    margin: 15px auto;
    color: var(--color-slate-gray);
    text-align: center;
}

.content-inner-h-separator {
    width: 100%;
    height: 2px;
    background-color: #efefef;
}

.content-inner-item-panel {
    display: flex;
    flex-direction: row;
    width: 100%;
    cursor: pointer;
}

.content-inner-item-panel:hover {
    background-color: var(--color-light-gray);
    transition-duration: 0.1s;
}

.content-inner-item-text {
    font-size: 16px;
    margin: 15px auto;
    text-align: center;
}
