* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f8;
  color: #141414;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-link,
.panel {
  display: block;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background: #fff;
  padding: 14px;
  text-decoration: none;
  color: inherit;
}

.row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

input,
button,
textarea {
  padding: 8px;
  font-size: 14px;
}

button {
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th,
td {
  border-bottom: 1px solid #ececec;
  text-align: left;
  padding: 8px;
}

.status-ok {
  color: #117a00;
}

.status-warn {
  color: #8a5a00;
}

.status-error {
  color: #b30000;
}

.big-time {
  font-size: 40px;
  font-weight: 700;
}

.small {
  color: #5c5c5c;
  font-size: 13px;
}

.events {
  max-height: 280px;
  overflow: auto;
}
