html,
body {
  background-color: #f9f6ee;
  margin: 5px 0px 5px 2px;
  padding: 5px 0px 5px 2px;
  overflow: hidden;
}

section {
  display: flex;
  flex-flow: column;
  height: calc(100vh - 20px);
}

.tab-content {
  flex: 1;
  overflow-y: scroll;
}

tr {
  cursor: default;
}

.myBtn {
  width: 70px;
}

.footer {
  position: fixed;
  bottom: 0;
}

table th {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1;
}

/* Favicon styling */
#faviconContainer {
  position: relative;
  margin-bottom: 20px;
}

#faviconContainer img {
  width: 48px;
  height: auto;
}


/* Ensures buttons inside action columns are correctly spaced */
.table-actions {
  display: flex;
  gap: 6px; /* Adds space between buttons */
  justify-content: flex-end; /* Aligns buttons to the right */
}

/* Prevents extra spacing on the last button */
.table-actions button:last-child {
  margin-right: 0;
}

/* Ensures text remains properly aligned inside table */
.table-actions td {
  vertical-align: middle;
}
