
@font-face {
  font-family: 'Barlow';
  src: url('/public/fonts/Barlow-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Barlow', sans-serif;
  font-size: 16pt;
  background: #f9fafb;
  color: #222;
  margin: 0;
}

.msg {
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}
.msg.error {
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}
.msg.success {
  background: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
}


nav {
  background: #1e2a38;
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.container {
  //max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

.card {
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-bottom: 2rem;
}

input[type="text"], input[type="file"], input[type="password"] {
  padding: 0.6rem;
  width: 100%;
  max-width: 400px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.2rem;
  padding-right: 0px;
}

button, a.button {
  background: #2a9d8f;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 0.5rem;
  text-decoration: none;
  font-size: 12pt;
  font-weight: normal;
}

button:hover {
  background: #21867a;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 1.2rem;
}

th, td {
  padding: 0.75rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}

th {
  background: #f0f0f0;
  font-weight: 600;
  cursor: pointer;
}

tr:hover {
  background: #f7f9fc;
}

.table-wrapper {
  overflow-x: auto;
}

.version-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}
.version-box {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    min-width: 120px;
    text-align: center;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 0 4px rgba(0,0,0,0.05);
}
.version-box.current {
    background: #dff0d8; /* grünlich */
    font-weight: bold;
}
.version-box.eol {
    background: #f8d7da; /* rot / EOL */
    color: #721c24;
}

.footer {
	margin-bottom: 30px;
}

.filter-wrapper {
  position: relative;
  display: inline-block;
}

#filterInput {
  //padding-right: 24px;
}

#clearFilter {
position: absolute;
  right: -30px;
  top: 35%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  color: #888;
}