body {
    background-color: #323232;
    font-family: Arial, sans-serif;
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup {
    background-color: #262626;
    border-radius: 4px;
    width: 600px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    color: white;
}

.popup-header {
    color: #4db5ff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mdiv {
  width: 19px;
  height: 19px;
  border: 1px solid #4db5ff;
  border-radius: 50%;
}

.mdiv {
  height: 15px;
  width: 1px;
  margin-left: 9px;
  margin-top: 2px;
  background-color: #4db5ff;
  transform: rotate(45deg);
  Z-index: 1;
}

.md {
  height: 15px;
  width: 1px;
  background-color: #4db5ff;
  transform: rotate(90deg);
  Z-index: 2;
}

.popup-content {
    background-color: #333;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

.popup-content p {
    font-size: 14px;
    color: #d4d4d4;
    margin: 0;
    line-height: 1.5;
}

.popup-content a {
    color: #00b4f1;
    text-decoration: none;
}

.popup-footer {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.popup-footer button {
    background-color: #0060a4;
    border: none;
    color: white;
    padding: 6px 34px;
    border-radius: 3px;
    cursor: pointer;
}

.popup-footer button:hover {
    background-color: #0078cf;
}

#warn {
  color: #e1a03a;
  font-size: 45px;
  margin-right: 15px;
}
