

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #000000;
  line-height: 1.6;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

main {
  width: 100%;
  max-width: 1000px; 
  margin: 0 auto;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-form h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}

.form {
  margin-bottom: 1rem;
}

.form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #fff;
  color: #000;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.active-button {
  display: inline-block;
  width: 100%;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.active-button:hover {
  background-color: #0056b3;
}

.muted { color: #666; font-size: 0.9rem; }
.prewrap { white-space: pre-wrap; }

.table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto; 
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

th, td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;    
  overflow-wrap: anywhere;  
}

th {
  font-weight: 600;
}

td.icon-cell,
th.icon-cell {
  width: 32px;
  text-align: center;
}
