@media only screen and (min-width: 1200px) {
  .movements-container {
    display: flex;
    flex-flow: row;
    gap: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .movements-container {
    display: flex;
    flex-flow: column;
    gap: 20px;
  }
}

.movement-table-date {
  font-size: 10pt;
  color: lightslategrey;
  margin-top: 10px;
  line-height: 30px;
}

.movement-table-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 30px;
  border-bottom: 1px dashed #c5c5c5;
}

.highlight-orange { color: darkorange; }
.highlight-red { color: #E63946; }
.highlight-green   { color: #2B9348; }
.highlight-blue { color: #2B4893 }

.movement-table-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.movement-table-content:hover {
  font-weight: bold;
  text-decoration: none;
}

.movement-table-content div small {
  color: #999;
}

div.movement-recurring-content {
    display: flex;
    flex-direction: row;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #ccc;
    border-radius: 4px;
    gap: 1px;
} 

@media only screen and (min-width: 767px) {
  div.movement-recurring-content { flex-direction: row; } 
}

@media only screen and (max-width: 768px) {
  div.movement-recurring-content { flex-direction: column; }
}

div.movement-recurring-content a {
    flex: 1;
    font-size: 10pt;
    color: black;
    background-color: #eee;
    text-align: center;
    text-decoration: none;
    padding: 5px;
    border: none;
    outline: none;
}

div.movement-recurring-content a.current,
div.movement-recurring-content a:hover {
  font-weight: bold;
  background-color: lightyellow;
}

@media only screen and (max-width: 767px) {
  div.movements-content {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  
  div.movements-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 20px;
  }
  
  div.movements-total {
    display: flex;
    flex-direction: column;
    width: 400px;
  }

}