/* src/client/index.css */
:root {
  --font-color: rgba(211, 227, 253, 0.7);
}
body {
  margin: 0;
  font-family: sans-serif;
  color: var(--font-color);
}
#root {
  height: 100%;
  background-color: #031525;
}
.table-wrapper {
  background-color: #162c46;
  border-radius: 5px;
  margin: 10px;
  padding: 10px;
  height: 80vh;
  overflow: auto;
}
table {
  min-width: 100%;
  border-collapse: collapse;
}
th {
  text-align: center;
}
td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  font-size: 12px;
  span {
    display: block;
    white-space: nowrap;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
button {
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  padding: 5px 10px;
  border-radius: 3px;
  background-color: transparent;
  color: var(--font-color);
}
.button-link {
  margin: 5px 0;
  color: var(--font-color);
  font-weight: bold;
  text-transform: capitalize;
}
.button-link:hover {
  background-color: #0842a0;
}
#modal {
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  background-color: #031525;
  overflow: hidden;
  height: 80vh;
  width: 80vw;
  display: none;
  flex-direction: column;
  padding: 0;
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-size: 20px;
    color: rgba(211, 227, 253, 0.7);
  }
}
.menu {
  display: flex;
  flex-direction: column;
  width: 200px;
  min-width: 200px;
  padding: 5px;
  background-color: #071a2b;
}
#dialog-content {
  display: flex;
  flex: 1;
}
pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  max-width: 100%;
  max-height: 70vh;
  overflow: auto;
  color: var(--font-color);
}
.status-2 {
  background-color: green;
  padding: 3px 5px;
  width: fit-content;
  border-radius: 2px;
}
.route {
  width: fit-content;
  border-radius: 2px;
  padding: 3px 5px;
}
.refresh {
  background-color: #0842a0;
}
.hydrate {
  background-color: #ff8f00;
}
