:root {
    --text-color-primary: #1c333c;
    --text-color-secondary: #77919b;
    --accent-primary: #37687c;
    --accent-hover: #37687c;
    --accent-text: #ffffff;
    --bg-border-width: 0.5rem;
    --bg-border-radius: 1.3rem;
    --element-border-radius: 0.6rem;
    --bg-border-color: #132228ca;
    --bg-fill-color: #ffffffff;
    --text-bg-color: #a6d9d93e;
}

body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    text-rendering: optimizeLegibility;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
}

#page-one{
    display: flex;
}

#page-two{
    display:none;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

#content{
    width: 85%;
    /* height: 100%; */
    margin:20px;
}

#topbar{
    height: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#topbar>button {
    margin:10px;
    font-size: 15px;
    padding:10px;
    font-family: "Poppins", sans-serif;
}
  
#drawing-container {
    
    display: block;
    position: relative;
    width: 100%;
    height: 90%;
    overflow: hidden;
    cursor: crosshair;
    /* border: 2px solid #666; */
}

#sidebar{
    background-color: #f0f0f0;
    margin:20px;
    width: 15%;
    /* height:100%; */
    display: flex;
    /* padding: 20px; */
    border: 2px solid #666;
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-between;
}

.icon{
    margin-left: 10px;
    cursor: pointer;
}
  
#sidebar>button {
    margin:20px;
    font-size: 18px;
    padding:20px;
    font-family: "Poppins", sans-serif;
}

#form-popup, #overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

#form-popup {
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    min-width: 250px;
}

  /* Add styles for the overlay */
#overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    transform: none;
    z-index: 999;
}

.open-path {
    stroke: #f00;
    stroke-width: 3; /* Adjust this value according to your desired stroke width */
    fill: none;
}
  
.closed-path {
    stroke: #0f0;
    stroke-width: 3; /* Adjust this value according to your desired stroke width */
    fill: rgba(0, 255, 0, 0.5);
}
  
.highlighted-path {
    stroke: #00f !important;
    stroke-width: 3; /* Adjust this value according to your desired stroke width */
    fill: rgba(0, 0, 255, 0.5) !important;
}


.path-heading-1{
    padding: 2px 20px;
    margin-bottom: 0px;
    padding-top: 20px;
    font-weight: bold;
}

.path-heading-2{
    padding: 2px 20px;
    margin-top: 0px;
    font-weight: normal;
}

.path-list-scroll-container{
    overflow: scroll;
    height: 88%;
}
.path-list-scroll-container::-webkit-scrollbar-track-piece, .path-list-scroll-container::-webkit-scrollbar-track{
    background-color:  red !important;
}

.list-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 20px 20px;
    border-bottom: 2px solid #b8b8b8;
}

.highlighted-list-item {
    background-color: lightblue !important;
}

.name-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.path-name {
    margin-right: 1rem;
    font-size: 1rem;
}

.icon {
    cursor: pointer;
    margin-left: 0.5rem;
}

.path-id {
    font-size: 0.9rem;
    color: #666;
}

#path-list-ul{
    margin-left: 0px;
    padding-left: 0px;
}

.material-symbols-rounded {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 200, "opsz" 55;
}
.formInput{
    display:flex;
    align-items: flex-start;
    flex-direction: column;
}
.formInput > input {
    height : 40px;
    width:100%;
    display: block; 
    margin-bottom: 10px;
    border: none;
    border-radius: 8px;
    background-color: #ededed;
}