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

.left-panel {
    background-color: var(--color-charcoal);
    min-height: 100%;
    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-category-text {
    color: var(--color-slate-gray);
    font-size: 22px;
    margin: 12px auto;
    text-align: center;
}

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

.left-panel-item-panel {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    margin: 5px 0;
}

.left-panel-item-panel p {
    background-color: rgba(255, 255, 255, 0);
    font-size: 20px;
    color: white;
    margin: 5px 0 5px 20px;
}

.left-panel-item-panel: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-selected:hover p {
    color:black;
    transition-duration: 0.1s;
}

body {
    width: 100dvw;
    min-height: 100dvh;
    background-color: #eeeeee;
    display: flex;
    flex-direction: row;
}

.toolbar-panel {
    background-color: white;
    width: 100%;
    height: 75px;
    display: flex;
    flex-direction: row;
}

.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-edit-button-pressed {
    background-color: var(--color-green);
}

.toolbar-edit-button-pressed:hover {
    background-color: rgba(1, 135, 1, 0.75);
}

.page-title {
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    font-size: 25px;
    display: flex;
    justify-content: center;
    cursor: default;
}

.red-toolbar-button:hover {
    background-color: rgba(244, 83, 83, 0.50);
}

.input-text {
    min-width: calc(100% - 4px);
    min-height: calc(100% - 4px);
    text-align: center;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}

.input-text:focus {
    border: none;
}

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

.content-panel-inner {
    max-width: 75%;
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
}

.content-panel-sub {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.properties-panel {
    margin: 10px;
    display: flex;
    flex-direction: column;
    min-height: 100px;
    min-width: 360px;
    background-color: white;
    border: 2px solid var(--color-light-gray);
    border-radius: 9px;
    padding-bottom: 30px;
}

.properties-title {
    text-align: center;
    font-size: 20px;
    margin: 30px auto 20px;
    cursor: default;
}

.properties-title-clickable {
    cursor: pointer;
}

.properties-title-clickable:hover {
    color: var(--color-aqua-blue);
}

.properties-entry {
    margin-left: 30px;
    margin-right: 30px;
    width: 300px;
    height: 77px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    color: black;
}

.properties-label {
    transform: translateY(3px);
    color: #7c7c7c;
}

.properties-text {
    margin-top: 5px;
    text-align: center;
    height: 50px;
    justify-content: center;
    align-content: center;
    border: 2px solid var(--color-light-gray);
    border-radius: 5px;
    margin-left: 0;
    margin-right: 0;
}

.input-hidden-div {
    display: none;
}

drop-zone {
    height: 200px;
    width: calc(100% - 20px);
    margin-left: auto;
    margin-right: auto;
}

.active-drop-zone {
    border-radius: 10px;
    border: 2px var(--color-light-gray) dashed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    transition-duration: 0.1s;
}

.active-drop-zone-hover {
    border-color: rgba(0, 158, 0, 0.75);
    transition-duration: 0.1s;
}

.active-drop-zone ion-icon {
    font-size: 50px;
    color: white;
    margin: auto;
}

.active-drop-zone-hover ion-icon {
    color: var(--color-green);
    font-size: 60px;
    transition-duration: 0.1s;
}

.search-modal {
    position: absolute;
    width: 360px;
    height: 500px;
    background-color: white;
    border: 2px solid var(--color-aqua-blue);
    border-radius: 15px;
    cursor: default;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 5;
}

.search-modal-big {
    position: fixed;
    width: 90%;
    height: 90%;
    margin: auto;
}

.search-modal-title {
    width: 100%;
    height: 50px;
    background-color: #efefef;
    text-align: center;
    align-content: center;
}

.search-item {
    width: 100%;
    height: 50px;
    background-color: white;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

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

.search-item-selected {
    background-color: lightgrey;
    transition-duration: 0.1s;
}

.search-item-selected:hover {
    background-color: #bfbfbf;
    transition-duration: 0.1s;
}

.search-property {
    width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}

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

.search-bar {

}

search-panel {
    display: flex;
    flex-direction: column;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 30px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
}

.search-title-bar {
    display: flex;
    width: 100%;
    height: 60px;
}

.search-title {
    display: flex;
    text-align: center;
    align-items: center;
    font-size: 23px;
    margin-left: 30px;
    margin-right: 25px;
}

.search-count-text {
    display: flex;
    margin-left: 25px;
    align-items: center;
    text-align: center;
    font-size: 18px;
    color: #8f8f8f;
}

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

.search-column-name-bar {
    display: flex;
    flex-direction: row;
    background-color: #e7e7e7;
    height: 60px;
}

.search-item-bar {
    display: flex;
    flex-direction: row;
    height: 60px;
    cursor: pointer;
}

.search-item-bar:hover {
    background-color: var(--color-light-gray);
}

.search-item-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: black;
}

.search-separator-bar {
    background-color: #e7e7e7;
    height: 3px;
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-gray);
    cursor: pointer;
}

.search-parameter-modal {
    position: absolute;
    display: flex;
    flex-direction: row;
    width: 300px;
    height: 400px;
    background-color: white;
    border-radius: 7px;
    transform: translateY(70px);
    z-index: 1;
    overflow-x: hidden;
}

.search-parameter-modal-sub {
    min-width: 300px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-parameter-modal-shift {
    transform: translateX(-300px);
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;
}

.search-parameter-div {
    display: flex;
    min-width: 300px;
    height: 60px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.search-parameter-div:hover {
    background-color: var(--color-light-gray);
}

.search-parameter-separator {
    min-width: 300px;
    height: 3px;
    background-color: #e7e7e7;
}

.search-parameter-panel {
    min-width: 300px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.search-parameter-panel input {
    margin: 15px;
    height: 40px;
    border-radius: 10px;
    text-align: center;
    font-size: 20px;
}

.delete-modal {
    position: fixed;
    background-color: white;
    border: 2px solid var(--color-light-gray);
    border-radius: 10px;
    width: 400px;
    height: 400px;
    margin: calc(50dvh - 200px) calc(50dvw - 200px);
    display: flex;
    flex-direction: column;
}

.delete-modal-icon-div {
    border: 3px solid rgb(250, 99, 99);
    border-radius: 100%;
    background-color: rgba(255, 156, 156, 0.25);
    width: 90px;
    height: 90px;
    margin: 40px auto 20px auto;
    display: flex;
    justify-content: center;
}

.delete-modal-icon-div ion-icon {
    font-size: 60px;
    color: rgb(250, 99, 99);
    margin: auto;
}

.delete-modal h1 {
    text-align: center;
    margin-bottom: 5px;
}

.delete-modal h2 {
    text-align: center;
    margin: 5px 20px 30px;
    font-size: 20px;
    color: #8f8f8f;
}

.delete-modal-buttons {
    margin-left: auto;
    margin-right: auto;
}

.delete-modal-buttons button {
    color: white;
    border: none;
    width: 125px;
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.delete-modal-button-cancel {
    background-color: darkgray;
}

.delete-modal-button-delete {
    background-color: rgb(250, 99, 99);
}

.delete-modal-button-cancel:hover {
    background-color: #989898;
}

.delete-modal-button-delete:hover {
    background-color: rgb(228, 91, 91);
}

.hidden {
    display: none;
}