@import "../../../assets/style/all";
@import "../../shared/admin-pages";

.meeting-row {
  padding: 15px;
  border-bottom: 1px solid mat-color($mat-grey, 400);
  cursor: pointer;

  &:last-of-type {
    border-bottom: none;
  }


  .published {
    &.no {
      color: mat-color($mat-blue, 700)
    }
    &.yes {
      color: mat-color($mat-orange, 700)
    }
  }

  .status {
    &.open {
      color: mat-color($mat-green, 700);
    }

    &.closed {
      color: mat-color($mat-red, 700);
    }
  }

  .title, .status, .published {
    padding: 5px 0;
  }

}

.add-meeting-row {
  text-align: center;
  margin: 20px 0;
}

.empty-note {
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  padding: 10px;
}
