.drop{
  border: 2px dashed #bbb;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 25px;
  margin-bottom: 20px;
  max-width: 400px;
  font: 20pt bold,"Vollkorn";
  color: #bbb;
  text-align: center;
}

.sidebar-selected {
  background: black;
  color: white;
  padding-left: 5px;
  margin-left: -5px;
}

#loadingThing {
  font-size: 50px;
}

.sidebar-selected a {
  color: white;
}

.sidebarX {
  display: none;
  position: absolute;
  top: -10px;
  left: 80px;
  font-size: 25px;
}

#image_file {
  display: none;
}


.image-crop-modal {
  display: flex;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.image-crop-background {
  background-color: white;
  padding: 0; /* Remove padding to handle it individually for content */
  border-radius: 8px;
  width: 90%;
  max-height: 80vh;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.image-crop-modal-content {
  padding-top: 15px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  overflow-y: auto; /* Allow vertical scrolling for content */
  flex: 1; /* Take up remaining space */
}

.image-crop-modal-footer {
  width: 100%;
  box-sizing: border-box;
  font-size: 23px;
  display: flex;
  /* Ensure the padding doesn’t affect the full width layout */
}

.image-crop-container {
  max-height: 500px; 
}

.image-crop-container img {
  max-width: 100%; /* Ensure the image resizes with the container */
  display: block; /* Center the image within its container */
  margin: 0 auto;
}

.cropButtonLeft {
  width: 100%;
  background-color: #f0f0f0;
  /* Light grey background */
  border-right: 1px solid #ccc;
  /* Divider between buttons */
}

.cropButtonRight {
  width: 100%;
  background-color: #007bff;
  /* Blue background */
  color: white;
  /* White text color */
}


.selectButton {
  flex: 1;
  /* Ensure buttons take up equal space */
  text-align: center;
  /* Center text horizontally */
  padding: 10px 0;
  /* Padding for some height */
  box-sizing: border-box;
  /* Include padding in width calculations */
  cursor: pointer;
  /* Change cursor to pointer on hover */
}

.selectButton:hover {
  opacity: 0.8;
}

.modal-open {
  overflow: hidden;
  /* Prevent scrolling on the body element */
}

.closeButton {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #000;
  /* Adjust color as needed */
  line-height: 24px;
  /* Center the X vertically */
  padding: 0;
}

.cardButtons {
  display: flex;                  /* Use flexbox for the container */
  justify-content: space-between; /* Align items to take full container width */
  align-items: center;            /* Optional: vertically center the buttons if needed */
  width: 100%;                    /* Ensure container takes full width, can adjust as needed */
}

.dollar-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: var(--pico-spacing);
}

.dollar-input-wrapper::before {
  content: '$';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
}

.dollar-input-wrapper input {
  padding-left: 20px; /* adjust according to the space needed for the dollar sign */
  margin-bottom: 0px;
}

.tabs {
  text-decoration: none;
  color: #373c44;
}

.tabs label {
  color: #373c44;
}

@media (max-width: 768px) {
  .sidebarX {
    display: block;
  }
}


input, select, button, hr {
  max-width: 1010px;
}
.buy-modal-background {
  max-width: 1010px;
}