/* Modal Styles */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
  }
  
  .modal {
    background-color: #252526;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 400px;
    max-width: 90%;
    overflow: hidden;
  }
  
  .modal-header {
    background-color: #333;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #555;
  }
  
  .modal-title {
    font-size: 16px;
    font-weight: 500;
  }
  
  .modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 18px;
    cursor: pointer;
  }
  
  .modal-close:hover {
    color: #fff;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
  }
  
  .form-input {
    width: 100%;
    padding: 8px 10px;
    background-color: #3c3c3c;
    border: 1px solid #555;
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
  }
  
  .form-input:focus {
    border-color: #0e639c;
    outline: none;
  }
  
  .modal-footer {
    padding: 10px 15px;
    border-top: 1px solid #555;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  
  .modal-btn {
    padding: 6px 14px;
    border-radius: 3px;
    border: none;
    font-size: 13px;
    cursor: pointer;
  }
  
  .modal-btn-primary {
    background-color: #0e639c;
    color: #fff;
  }
  
  .modal-btn-primary:hover {
    background-color: #1177bb;
  }
  
  .modal-btn-cancel {
    background-color: #3a3a3a;
    color: #fff;
  }
  
  .modal-btn-cancel:hover {
    background-color: #505050;
  }