.alert-container {
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  .alert-header,
  .alert-subheader {
    margin-bottom: 20px;
    color: #333;
  }
  
  .alert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .alert-item {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .alert-item.alert-selected {
    background-color: #f0f8ff;
    border-color: #007bff;
  }
  
  .alert-form {
    margin-top: 20px;
  }
  
  .alert-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  .alert-checkbox {
    margin-bottom: 10px;
  }
  
  .alert-date {
    margin-bottom: 10px;
  }
  
  .alert-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .alert-button:hover {
    background-color: #0056b3;
  }
  
  .alert-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .alert-table th,
  .alert-table td {
    padding: 10px;
    border: 1px solid #ccc;
  }
  
  .alert-table th {
    background-color: #f9f9f9;
    text-align: left;
  }
  