#new-highentry-form {
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  background-color: #f5f5f5;

  height: 50px; 
  text-align: center; 
  line-height: 100px;
}

#new-highentry-form input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 5px;
}

#new-highentry-form button {
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#entry-input {
    display: grid;
    grid-template-columns: 1fr auto;
    
    padding: 5px;
    border-top: 1px solid #ccc;
    background-color: #f5f5f5;
    height: 100px; 
    text-align: center; 
    line-height: 100px; 
  }
  
  #entry-input input,
  #entry-input textarea {
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
  }
  
  #entry-input button {
    grid-row: span 2;
    align-self: center;
    height: 90%;
    width: 60px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #entry-input button:hover {
    background-color: #0056b3;
  }

  .create-entry-button {
    font-size: larger !important; 
    font-weight: bold;
  }

.buttons-bar {
    display: flex;
    gap: 5px;
    padding: 5px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #ccc;
    height: 50px; 
    text-align: center; 
    
  }
  
  .buttons {
    display: flex;
    gap: 5px;
    padding: 5px;
    background-color: #f5f5f5;
    
    text-align: center; 
    
  }
  .buttons button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
  }
  
  .buttons button:hover {
    background-color: #0056b3;
  }
  
  .buttons button.asc::after {
    content: '▲';
  }
  
  .buttons button.desc::after {
    content: '▼';
  }

