/* Styling for the currentStatus dropdown */
#currentStatus{
    padding: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-bottom: 8px;
  }

  #currentReportStatus {
    padding: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  /* Hover effect for the currentStatus dropdown */
  #currentStatus:hover, #currentReportStatus:hover {
    background-color: #f1f1f1;
  }

  .report-status-selector{
    /* padding-top: 24px; */
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  /* Hover effect for the Save button */
  .save-button, .previous-button, .next-button {
    background-color: #c8102e;
    color: white;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  .save-button:disabled,  .save-button:disabled:hover {
    background-color: #a0a0a0;
    color: #d3d3d3;
    cursor: not-allowed;
    opacity: 0.7;
  }

  .save-button:hover, .previous-button:hover, .next-button:hover {
    background-color:  #800000;
  }

  /* Hover effect for the Close button */
  .close-button {
    background-color: #c8102e;
    color: white;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
  }

  .close-button:hover {
    background-color: #800000;
  }

  /* Styling for the status container */
  .report-item-header{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  /* .status-container {
  width: 30%;
  position:relative;
  }

  .check-mark {
  position:absolute;
  bottom: 5px;
  left: 180px;
  display: none;
  }

  .check-mark img {
    width:30px;
    height: 30px;
  } */