﻿body {
  font-family: sans-serif;
  margin: 0;
  padding: 1em;
  background: #f0f2f5;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

a.logout,
a.login {
  text-decoration: none;
  color: #444;
  background: #ffb400;
  padding: 0.6em 1em;
  border-radius: 5px;
}

.container {
  max-width: 95%;
  margin: auto;
  background: white;
  padding: 2em;
  border-radius: 0.5em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h2 {
  text-align: center;
  color: #dc0067;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input,
textarea,
button,
select {
  font-size: 1em;
  padding: 0.6em;
}

button.secondary {
  background: #ddd;
  color: #333;
  border: none;
  border-radius: 0.3em;
}

a.button,
button {
  text-decoration: none;
  background: #dc0067;
  color: white;
  border: none;
  border-radius: 0.3em;
  font-size: 1em;
  padding: 0.6em;
}

.button-wrapper {
  display: flex;
  justify-content: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}

table th, table td {
  border: 1px solid #ccc;
  padding: 0.5em;
  text-align: left;
}

table th {
  background-color: #f2f2f2;
}
