/* Basic reset */
body {
  margin: 0;
  padding: 30px;
  background-color: #1e293b;
  color: #f1f5f9;
  font-family: Arial, Helvetica, sans-serif;
}

/* Headings */
h1 {
  text-align: center;
  font-size: 2.4em;
  color: #f8fafc;
  margin-bottom: 20px;
}

h2 {
  font-size: 1.6em;
  color: #93c5fd;
  margin-top: 30px;
  margin-bottom: 10px;
}

h3 {
  font-size: 1.2em;
  color: #fde68a;
  margin: 0;
}

/* Paragraphs */
p {
  font-size: 1em;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Links */
a {
  color: #34d399;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

/* Profile table */
.profile-table {
  background-color: #334155;
  margin-bottom: 25px;
}

.profile-table td {
  padding: 15px;
  vertical-align: middle;
}

/* Images */
.profile-pic {
  width: 400px;
  height: auto;
  display: block;
}

.activity-img {
  width: 300px;
  height: auto;
  display: block;
}

/* Activities table */
.activities-table {
  background-color: #334155;
}

.activities-table td {
  padding: 15px;
  vertical-align: top;
  border-top: 1px solid #64748b;
}

/* Sections */
section {
  margin-bottom: 20px;
}

/* SURVEY STYLES */
.container {
  max-width: 900px;
  margin: 24px auto;
  padding: 20px;
}

.form-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.form-table td {
  vertical-align: top;
  padding: 6px 10px;
}

.label-cell {
  width: 35%;
  font-weight: 600;
  padding-top: 10px;
}

input[type="text"],
select,
textarea {
  width: 100%;
  max-width: 520px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.option-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 6px;
}

.option-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

input[type="submit"] {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  background: #1f6feb;
  color: white;
  width: 100%;
}

input[type="submit"]:hover {
  filter: brightness(0.95);
}

.card {
  background-color: rgb(46, 46, 46);
  border: 1px solid white;
  border-radius: 14px;
  padding: 18px;
}
