.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #97b2ff;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup-notification.show {
    opacity: 1;
    transform: translateY(0);
}


/* ----- */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
  }
  
  .custom-select-wrapper::after {
    content: "▼"; /* You can use a Unicode arrow or an image */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Let clicks pass through */
    color: #666;
    font-size: 12px;
  }
  
  .custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    width: 100%;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background-color: transparent;
    background-image: none;
  }
   .overlay {
   display: none;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
  
    .overlay-content {
      text-align: center;
      color: white;
    }
  
    .overlay-content h2 {
      margin-bottom: 20px;
      color: #fffb00;
    }
  
    .buttons button {
      margin: 0 10px;
      padding: 10px 20px;
      border: none;
      background-color: #fff;
      color: #000000;
      cursor: pointer;
      border-radius: 4px;
      transition: background-color 0.3s;
    }
  
    .buttons button:hover {
      background-color: #ddd;
    }