.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modalContainer {
    background-color: #0088cc;
    color: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .modalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #2C3E50;
    color: white;
  }
  
  .modalHeader h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
  }
  
  .closeButton {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .form {
    padding: 16px 20px;
  }
  
  .selectionRow {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .selectGroup {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .select {
    background-color: #2b3b4d;
    color: #ffffff;
    border: 1px solid #4a5a6a;
    border-radius: 4px;
    padding: 10px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
  }
  
  .inputGroup {
    margin-bottom: 16px;
  }
  
  .inputGroup label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .input {
    width: 100%;
    background-color: white;
    color: #000000;
    border: 1px solid #4a5a6a;
    border-radius: 4px;
    padding: 10px;
  }
  
  .submitButton {
    width: 100%;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 16px;
    transition: background-color 0.2s;
  }
  
  .submitButton:hover {
    background-color: #45a049;
  }