/*  Css link ro */
.popup-overlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: none;
}

.popup-container {
  max-width: 500px;
  margin: 0 auto;
  margin-top: 200px;
  font-family: "Roboto", sans-serif;
  background-image: linear-gradient(
    to right top,
    #fafafa,
    #fafafa,
    #fafafa,
    #fafafa,
    #fafafa
  );
  padding: 24px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ffffff;
  color: #000000;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  font-weight: bold;
  transform: rotateZ(45deg);
  cursor: pointer;
}

.popup-title {
  font-size: 24px;
  text-align: center;
  color: #000000;
}

.popup-description {
  font-size: 16px;
  text-align: center;
}

.popup-button {
  background: #f70c0c;
  color: #ffffff;
  text-decoration: none;
 
  padding: 12px 36px;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
  width: 160px;
  text-align: center;
  margin-top: 32px;
}


