body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  #app {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  #title{
    text-align: center;
    margin-bottom:32px;
  }
  
  #canvasContainer {
    position: relative;
    margin-top: 20px;
  }
  
  #cropCanvas {
    border: 2px dashed #f8f8f8;
    cursor: move;
    width: 300px;
    margin: 0 auto;
    display: block;
    padding: 16px;
    /* border-radius:100% */
  }
  
button#saveBtn {
    background: #7ED19A;
    cursor: pointer;
    border-radius: 20px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
    display: none;
}

.edit-img {
    display: flex;
    align-content: space-between;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.img-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    justify-content: space-around;
}

input#resizeSlider {
    width: 100px;
}

#controlbar {
    display: flex;
    gap: 18px;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    background: #f8f8f8;
    padding: 8px;
    border-radius: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    justify-content: space-between;
}

.devider {
    border-top: 1.5px solid #d7d7d7;
    width: 90%;
}

label {
    font-size: 14px;
}


/* file upload button */
input[type="file"]::file-selector-button {
    background: #A3A9FE;
    cursor: pointer;
    border-radius: 20px;
    padding-left: 32px;
    padding-right: 32px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
  transition: background-color 200ms;
}
input[type="color" i] {
    appearance: none;
    width: 100px;
    height: 30px;
    cursor: pointer;
    box-sizing: border-box;
    background: transparent;
    border: 1px solid buttonborder;
    border-radius: 8px;
    outline: none;
}

#cropShapes {
    padding-top: 16px;
    gap:8px;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#cropShapes button {
    background: #ffffff;
    border: 1px solid #d7d7d7;
    cursor: pointer;
    border-radius: 20px;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 12px;
    color: #d7d7d7;
    display: flex;
}


#cropShapes button.active{
    color: black;
    border: 2px solid black;
}

div#downloadSection {
    display: flex;
    width: 100%;
    margin-top: 16px;
    gap: 16px;
    flex-direction: column;
    align-content: center;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
  }
  
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196f3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
  }
  