#historyContainer {
  background: #f8f8f8;
  padding: 20px;
  margin-top: 40px;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.spin-history-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333;
}
.history-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.history-list li {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #444;
}
.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 90px;
  transform: translateX(-50%);
  background: #fff;
 
  z-index: 1001;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.popup.show {
  display: block;
}
.popup .popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-weight: bold;
}
.overlay {
  display: none;
  position: fixed;
  background: rgba(0,0,0,0.3);
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1000;
}
.overlay.show {
  display: block;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
}

.popup-close:hover {
    color: #333;
}

.popup-content {
    position: relative;
    padding: 20px;
}
.popup-content {
    
    padding: 20px;
    
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    text-align: center;
}

.popup-content h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
}

.popup-content input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.popup-content input:focus {
    border-color: #007bff;
    outline: none;
}

.popup-content button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.popup-content button:hover {
    background: #0056b3;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #333;
}

