.map-container {
    height: 400px;
    width: 100%;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 10px;
    display: none;
}

.camera-container {
    position: relative;
    width: 100%;
    height: 300px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}

.camera-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camera-container button {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.selfie-preview {
    margin-top: 10px;
    text-align: center;
}

.selfie-preview img {
    max-width: 100%;
    border-radius: 10px;
}

.crop-container {
    position: relative;
    margin-top: 20px;
    display: none;
  }
  
  .crop-container img {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
  }
  
  #saveCrop {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }
  #cropImageBtn{
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }