.column {
  cursor: pointer;
}

.shareInfo {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 10px;
  height: 60px;
  border: none;
  text-align: center;
  display: none;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  /* justify-content: left; */
  border-radius: 5px;
    align-items: center; /* Vertically center the content */
}

.saveButton {
    width: 85%;
    font-size: 22px;
    height: 60px;
    line-height: 60px;
  border: none;
  text-align: center;
  border-radius: 5px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
    cursor: pointer;
}

.svgIcon {
    color: red; /* Set the colour to be inherited */
}
.svgIcon circle {
    fill: currentColor; /* Forces the fill to use currentColor */
}

.shareInfo .icon {
    width: 70px;
    height: 100%;
    border-radius: 5px 0 0 5px;
     text-align: center;
     justify-content: center;
     
}

.shareInfo .icon img, .shareInfo .icon svg {
    margin-top: 8px;
    width: 60%;
}

.shareInfo .button {
    width: 100px;
     display: flex;
     height: 80%;
     border-radius: 5px;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
}

.shareInfo .button:last-of-type {
    /* Your custom styles here */
    margin-right: 10px;
}

#sharelink {
    display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
   white-space: nowrap;          /* Prevents text from wrapping to the next line */
    overflow: hidden;             /* Hides overflowed text */
    text-overflow: ellipsis;      /* Adds an ellipsis (...) to the truncated text */
}

#shareButton {
  cursor: pointer;
}

.colourPicker {
  cursor: pointer;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 5px;
  width: 60px;
  height: 20px;
}

#layout {
    margin: 0px;
    padding: 0px;
}

