#export{
    display: none;
    font-family: Rubik;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 7px;
    width: fit-content;
    text-align: center;
    background-color: #0677BB;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
}
#export:hover{
    background-color: #055c92;
}

#export_window.hidden {
    display: none;

}
  
#export_window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.export_content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: Rubik;
    font-size: 15px;
    font-weight: 500;
}

.export_content button{
    font-family: Rubik;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 7px;
    width: 140px;
    text-align: center;
    background-color: #0677BB;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.export_content button:hover{
    background-color: #055c92;
}
#copy_link{
    margin-left: -10px;
    width: fit-content
}

.export_header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.export_header input {
    flex: 1;
    padding: 5px;
    font-family: Rubik;
    font-size: 14px;
    font-weight: 500;
}
.button-container {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: center;     /* centers vertically if height is set */
    gap: 10px;               /* optional: space between buttons */
}

#cropContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Optional: ensures it's on top */

}