/* Container and Cards */
.tc-wrapper {
  max-width: 850px;
  margin: 20px auto;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background: #fdfdfd;
  padding: 10px;
}
.tc-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.tc-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* Form Elements */
.tc-form-row {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  gap: 20px;
  margin-bottom: 15px;
}
.tc-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #4b5563;
  padding-top:10px;
}
.tc-input,
.tc-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
  transition: border 0.2s;
}
.tc-input:focus {
  border-color: #095d81;
  outline: none;
}
.tc-submit {
  background: #095d81;
  color: #fff;
  border: none;
  padding: 0;
  width: 100%;
  border-radius: 6px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 10px;
  font-family: "Figtree";
  font-size: 20px;
  transition: 0.5s all;
}
.tc-submit:hover {
  background: #3a7d9a;
}

/* Tables */
.tc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.tc-table th,
.tc-table td {
  padding: 14px;
  border-bottom: 1px solid #f3f4f6;
  text-align: left;
}
.tc-table th {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tc-right {
  text-align: right;
}
.tc-bold {
  font-weight: 700;
}
.tc-highlight-row {
  background: #f9fafb;
  border-top: 2px solid #e5e7eb;
}

/* Charts */
.tc-chart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tc-chart-box {
  min-height: 300px;
}

@media (max-width: 650px) {
  .tc-form-row,
  .tc-chart-grid {
    grid-template-columns: 1fr;
  }
}