/* Simple and Clean Styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f6f8;
  color: #333333;
  line-height: 1.6;
  padding: 30px 15px;
}

.container {
  max-width: 600px;
  margin: 0 auto;
}

.header {
  text-align: center;
  margin-bottom: 24px;
}

.header h1 {
  font-size: 26px;
  color: #1a202c;
  margin-bottom: 6px;
}

.header p {
  font-size: 14px;
  color: #64748b;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.card h2 {
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #edf2f7;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

label {
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 6px;
}

.required {
  color: #e53e3e;
}

input {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  background-color: #ffffff;
  color: #1a202c;
  transition: border-color 0.2s ease;
}

input:focus {
  border-color: #3182ce;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary {
  background-color: #2b6cb0;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #2c5282;
}

.btn-secondary {
  background-color: #edf2f7;
  color: #4a5568;
  border: 1px solid #cbd5e1;
}

.btn-secondary:hover {
  background-color: #e2e8f0;
}

/* Results Display Table */
.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.profile-table th,
.profile-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid #edf2f7;
}

.profile-table th {
  width: 38%;
  color: #4a5568;
  font-weight: 600;
  background-color: #f8fafc;
}

.profile-table td {
  color: #1a202c;
  font-weight: 500;
}

@media (max-width: 500px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .profile-table th,
  .profile-table td {
    padding: 10px 8px;
    font-size: 13px;
  }
}
