/* Style the button that is used to open and close the collapsible content */
body {
  align-items: center;
}
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: 25px;
    text-align: left;
    outline: none;
    font-size: 15px;
  }
  
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #ccc;
}

.time {
  float: right;
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  margin: 0 5px 10px 5px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}