body{
    background: #151619;
}
.badge-outline-info {
    color: #3da5f4;
    border: 1px solid #3da5f4
}
.badge-outline-light {
    color: white;
    border: 1px solid white
}
.badge-outline-danger {
    color: #f1536e;
    border: 1px solid #f1536e
}

.badge-outline-success {
    color: #00c689;
    border: 1px solid #00c689
}

.badge-outline-warning {
    color: #fda006;
    border: 1px solid #fda006
}
.badge-outline-primary {
    color: #405189;
    border: 1px solid #405189
}
option.locked {
    color: #999;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .popup-box {
    background: #fff;
    padding: 25px;
    max-width: 400px;
    width: 90%;
    border-radius: 10px;
    text-align: center;
    animation: popupFade 0.3s ease;
  }
  
  .popup-box h2 {
    margin-top: 0;
  }
  
  .popup-box button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .popup-box button:hover {
    background: #0056b3;
  }
  
  @keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }