* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  overflow: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 1px;
  margin: 5px 0;
}

td, th {
  border: 1px solid black;
  padding: 3px; 
}

#app {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: #f5f5f5;
}

.entries-app {
  display: flex;
  height: 100vh;
  width: 100%;
}

.highs-container,
.entrys-container {
  flex: 1;
  padding: 3px;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#new-highentry-form {
  height: 100px; 
  background-color: #f4a261; 
  text-align: center; 
  line-height: 100px;
}

#highs-list,
#entrys-list {
  overflow: auto;
  height: 85%;
  padding: 15px;
  flex-grow: 1; 
  align-items: center; 
}

.resizer {
  width: 3px;
  background-color: #ccc;
  cursor: ew-resize;
  user-select: none;
}


.resizer:hover {
  background-color: #aaa;
}

.hidden {
  display: none !important;
}

.red-text {
  color: red;
}

.green-text {
  color: green;
}

.orange-text {
  color: orange;
}

.blue-text {
  color: blue;
}

.cyan-text {
  color: cyan;
}

.context-menu {
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  min-width: 150px;
  display: none;
}

.context-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.context-menu li {
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
}

.context-menu li:hover {
  background-color: #f0f0f0;
}

#flip-button {
  display: none;
}