
/* Address Modal Styles */
.address-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('./images/BG2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.9);
  border: 2px solid blue;
  border-radius: 10px;
  padding: 20px;
  max-width: 90vw;
  width: 500px;
  max-height: 80vh;
  color: white;
  z-index: 999999;
  box-shadow: 0 0 20px rgba(0, 0, 255, 0.3);
}

.address-modal * {
  color: white;
}

.address-close {
  position: absolute;
  right: 15px;
  top: 10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.address-list {
  max-height: 60vh;
  overflow-y: auto;
  margin-top: 15px;
}

.address-item {
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-item:hover {
  background: rgba(0,0,255,0.2);
}

.address-item i {
  color: blue;
}

.address-item span {
  flex: 1;
  text-align: left;
}
