#global-my-area-display {
  position: fixed;
  top: 230px;
  right: 10px;
  z-index: 10;
  width: 120px;
}

.global-my-area-info {
  background: #FDFFDF;
  border-radius: 50%;
  position: relative;
  height: 120px;
}

.global-my-area-info::before {
  content: "";
  background-image: url(/image/area-photo-bg-ill.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 30px;
  height: 41px;
  position: absolute;
  top: -21px;
  right: -8px;
}

.global-my-area-info::after {
  content: "";
  background-color: #FFE44F;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.my-area-label {
  background: #000;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 10px;
  text-align: center;
  padding: 4px;
  line-height: 1;
  margin-inline: auto;
  margin-bottom: 6px;
  width: 90%;
}

.my-area-name {
  color: #000;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
  transition: .4s;
}

.my-area-name:hover {
  color: #000;
  opacity: .6;
  text-decoration: none;
}

.my-area-clear-btn {
  background: #000;
  color: white;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  margin-left: auto;
  font-size: 16px;
  line-height: 1;
  position: absolute;
  bottom: -7px;
  right: 0px;
  transition: .4s;
}

.my-area-clear-btn:hover {
  background: #D9D9D9;
}

.my-area-confirm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity .2s ease;
}

.my-area-confirm-backdrop.is-hiding {
  opacity: 0;
}

.my-area-confirm-dialog {
  background: white;
  color: #333;
  padding: 16px 22px;
  border-radius: 6px;
  min-width: 200px;
  max-width: 360px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.my-area-confirm-dialog-message {
  margin-bottom: 12px;
  line-height: 1.4;
}

.my-area-confirm-dialog-buttons {
  text-align: right;
}

.my-area-confirm-dialog-buttons button {
  margin-left: 8px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 4px;
  border: none;
}

.my-area-confirm-dialog-ok {
  background: #007bff;
  color: #fff;
}

.my-area-confirm-dialog-cancel {
  background: #ddd;
  color: #333;
}

.my-area-txt {
  text-align: center;
  margin: 0;
}