.my-shop-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: flex-end;
} 
 
.my-shop-modal {
  width: calc(1200px - 20%);
  max-width: 80%;
  max-height: 100vh;
  height: 100vh;
  margin-bottom: 0;
  pointer-events: all;
} 
 
.my-shop-modal-content {
  background: #fff;
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100vh;
  margin-top: 50px;
  max-height: 100%;
  overflow-y: auto;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.my-shop-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

.my-shop-modal-body {
  max-height: 100vh;
  overflow-y: auto;
}

.hidden {
  display: none;
}

input[type="text"],
input[type="number"],
input[type="file"],
select,
textarea {
  background: #f9f9f9;
}

button[type="submit"] {
  border-radius: 4px;
}


.icon-container {
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.icon-container img {
  width: 16px;
  height: 16px;
}

.button-text {
  margin: auto;
}





@media (max-width: 500px) {
  .my-shop-modal {
    width: 100%;
  }
}

