codecraft-web-project-footer {
    display: none !important;
}
codecraft-web-project-footer {
    display: none !important;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #e2e8f0;
  line-height: 1.7;
  margin: 0;
  padding: 40px 20px;
}

.empathize-page {
  max-width: 1200px;
  margin: 0 auto;
}

.header-banner {
  text-align: center;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px -5px rgba(5, 150, 105, 0.4);
}

.header-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.assumptions-section > h2 {
  font-size: 1.75rem;
  color: #f8fafc;
  margin-top: 50px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 800;
}

/* Single-column vertical stack */
.assumptions-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 850px;
  margin: 0 auto 40px auto;
}

.notebook-card {
  background: #1e293b;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #334155;
  border-left: 6px solid #10b981;
  box-shadow: 0 6px 12px -2px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease-in-out;
}

.notebook-card:hover, 
.notebook-card:focus {
  transform: translateY(-6px);
  border-color: #475569;
  border-left-color: #34d399;
  box-shadow: 0 20px 30px -5px rgba(16, 185, 129, 0.2);
  outline: none;
}

.notebook-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #34d399;
  margin-top: 0;
  margin-bottom: 14px;
  text-align: left;
}

.notebook-card p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin: 0 0 20px 0;
}

.sketch-placeholder-img {
  width: 100%;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
  padding: 16px;
  box-sizing: border-box;
  text-align: center;
}

.sketch-placeholder-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Code Snippet Box Styling */
.code-snippet-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  margin-top: 16px;
}

.code-snippet-box pre {
  margin: 0;
  color: #34d399;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
}

/* Summary Section Customizations */
.summary-block {
  margin-bottom: 24px;
}

.summary-block:last-child {
  margin-bottom: 0;
}

.summary-block h3 {
  font-size: 1.2rem;
  color: #34d399;
  margin-bottom: 8px;
}

.summary-block p {
  font-size: 1rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.6;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #059669;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
  transition: all 0.2s ease;
  border: 1px solid #34d399;
}

.project-link:hover {
  background: #047857;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
  text-decoration: none;
}

/* Testing Log Table Styles with Fixed Spacing */
.testing-table {
  width: 100% !important;
  border-collapse: collapse;
  margin-top: 16px;
  text-align: left;
  font-size: 0.95rem;
  table-layout: fixed;
}

.testing-table th, 
.testing-table td {
  padding: 16px 18px;
  border-bottom: 1px solid #334155;
  color: #cbd5e1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

/* Explicit column widths that total 100% */
.testing-table th:nth-child(1),
.testing-table td:nth-child(1) {
  width: 25%; 
}

.testing-table th:nth-child(2),
.testing-table td:nth-child(2) {
  width: 35%; 
}

.testing-table th:nth-child(3),
.testing-table td:nth-child(3) {
  width: 40%; 
}

.testing-table th {
  color: #34d399;
  font-weight: 700;
  background-color: rgba(15, 23, 42, 0.4);
  border-bottom: 2px solid #34d399;
}

.testing-table tr:hover td {
  background-color: rgba(51, 65, 85, 0.3);
}