@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
  font-family: 'brigends';
  src: url('/static/fonts/brigends.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  }

body {
font-family: "Inter", system-ui;
font-optical-sizing: auto;
font-style: normal;
margin: 2rem;
  background-color: #f9f9f9;
  color: #222;
scroll-behavior: smooth;
}

h2 {
  margin-top: 2rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2rem;
  table-layout: auto;
}
th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  white-space: pre-wrap;
}
th {
  background-color: #eee;
}
button {
  padding: 4px 8px;
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
button:hover {
  background-color: #c9302c;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.topbar h1 {
  margin: 0;
  font-size: 2rem;
}

.topbar form {
  margin: 0;
}

.btn {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.btn.info {
  background-color: #007bff;
  color: white;
}

.btn.info:hover {
  background-color: #0069d9;
}

.btn.delete {
  background-color: #d9534f;
  color: white;
}

.btn.delete:hover {
  background-color: #c9302c;
}

.btn.back {
  background-color: #000;
  color: white;
}

.btn.back:hover {
  background-color: #4b4b4b;
  color: white;
}

input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }

  h1 {
    font-family: 'brigends', sans-serif;
    color: #111;
    font-size: 3rem;
    margin-top: 0;
    }