@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  background-color: #121212;
  color: #dddddd;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

h1, h2 {
  color: #3a85ff;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

main {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

button, .log-file-btn {
  background-color: #263f5f;
  color: #dddddd;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
}

button:hover, .log-file-btn:hover {
  background-color: #1b2f47;
}

#archives-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

#log-content {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 1rem;
  margin-top: 2rem;
  border-radius: 0.5rem;
  text-align: left;
  white-space: pre-wrap;
  max-width: 800px;
  width: 90%;
  overflow-x: auto;
  display: none;
  box-shadow: 0 0 3px rgba(58, 133, 255, 0.2);
}

footer {
  margin-top: auto;
  font-size: 0.8rem;
  opacity: 0.6;
  text-align: center;
  padding: 1rem;
}
