/* DifferenZ Calculator Styles - HubSpot Compatible with dz- prefix */

.dz-container * { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dz-container { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
  background: linear-gradient(to bottom, #ffffff, white); 
  min-height: 100vh; 
  padding: 1rem 10px; 
  max-width: 1300px; 
  margin: 0 auto; 
  width: 100%;
  border-radius: 1rem !important;
  -webkit-border-radius: 1rem !important;
  overflow: hidden;
}

.dz-step-content { 
  display: none; 
}

.dz-step-content.dz-active { 
  display: block; 
}

.dz-card {
  background: #E8F8F5;
  border: 4px solid #B8E6E1;
  border-radius: 1rem !important;
  -webkit-border-radius: 1rem !important;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
  overflow: hidden;
}

.dz-card-header {
  text-align: center;
  margin-bottom: 1rem;
}

.dz-card-title {
  font-size: 2rem;
  font-weight: bold;
  color: #2D5A5A;
  margin-bottom: 0.5rem;
}

.dz-card-subtitle {
  font-size: 1.25rem;
  color: #2D5A5A;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dz-progress-container { 
  text-align: center; 
  padding-top: 1.5rem; 
  border-top: 2px solid #B8E6E1; 
  margin-top: 1.5rem; 
}

.dz-step-indicator { 
  display: flex; 
  justify-content: center; 
  gap: 0.5rem; 
  max-width: 800px; 
  margin: 0 auto 1rem; 
  position: relative; 
}

.dz-step-indicator::before { 
  content: ''; 
  position: absolute; 
  top: 20px; 
  left: 10%; 
  right: 10%; 
  height: 3px; 
  background: #d1d5db; 
  z-index: 0; 
}

.dz-step-item { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  flex: 1; 
  position: relative; 
  z-index: 1; 
}

.dz-step-circle { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: white; 
  border: 3px solid #d1d5db; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: bold; 
  color: #9ca3af; 
  margin-bottom: 0.5rem; 
  position: relative;
}

.dz-step-item.dz-active .dz-step-circle { 
  background: #00AEED; 
  border-color: #00AEED; 
  color: white; 
}

.dz-step-item.dz-completed .dz-step-circle { 
  background: #00AEED; 
  border-color: #00AEED; 
  color: white; 
}

/* Checkmark for completed steps */
.dz-step-item.dz-completed .dz-step-circle::after {
  content: '✓';
  position: absolute;
  font-size: 1.25rem;
  font-weight: bold;
}

/* Desktop - Step Label Single Line */
.dz-step-label { 
  font-size: 0.75rem; 
  color: #9ca3af; 
  text-align: center; 
  white-space: nowrap;
  max-width: none;
  line-height: 1.2;
}

.dz-step-item.dz-active .dz-step-label { 
  color: #00AEED; 
  font-weight: 600; 
}

.dz-step-item.dz-completed .dz-step-label { 
  color: #2D5A5A; 
}

.dz-grid { 
  display: grid; 
  gap: 2rem; 
}

.dz-grid-3 { 
  grid-template-columns: repeat(3, 1fr); 
}

.dz-building-option { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  padding: 2rem 1.5rem; 
  cursor: pointer; 
  background: white; 
  border: 3px solid #B8E6E1; 
  border-radius: 1rem !important;
  -webkit-border-radius: 1rem !important;
  width: 100%; 
  transition: all 0.2s;
  overflow: hidden;
}

.dz-building-option:hover { 
  transform: scale(1.05); 
  border-color: #00AEED; 
  box-shadow: 0 4px 12px rgba(0,174,237,0.2); 
}

.dz-building-icon { 
  width: 120px; 
  height: 120px; 
  margin-bottom: 1.5rem; 
}

.dz-building-label { 
  font-weight: bold; 
  color: #1f2937; 
  margin-bottom: 0.75rem; 
  font-size: 1.5rem; 
}

.dz-building-size { 
  color: #4b5563; 
  font-size: 1.125rem; 
}

.dz-building-type-display { 
  display: flex;
  align-items: center; 
  gap: 1rem; 
  margin: 0 auto 2rem auto; 
  padding: 1rem 1.5rem; 
  background: white; 
  border-radius: 0.75rem;
  border: 2px solid #B8E6E1;
  width: 70%;
  max-width: 600px;
  min-width: 250px;
}

.dz-building-type-icon { 
  width: 56px; 
  height: 56px; 
  flex-shrink: 0;
}

.dz-building-type-text { 
  font-size: 1.5rem; 
  font-weight: bold; 
  color: #2D5A5A; 
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dz-form-container {
  width: 70%;
  max-width: 600px;
  min-width: 300px;
  margin: 0 auto;
}

.dz-form-row { 
  display: grid; 
  grid-template-columns: 200px 180px 1fr; 
  align-items: center; 
  gap: 1rem; 
  margin-bottom: 1rem; 
  padding: 1rem 0; 
  border-bottom: 1px solid #d1d5db;
  width: 100%;
}

.dz-form-row:last-child {
  border-bottom: none;
}

.dz-form-label {
  font-size: 1rem;
  font-weight: 600;
  text-align: center !important;
  justify-self: center !important;
  width: 100%;
  color: #2D5A5A;
}

.dz-form-input-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: auto;
}

.dz-form-input, .dz-form-select {
  font-size: 1rem;
  width: 120px;
  height: 44px;
  text-align: left;
  padding: 0 0.75rem;
  border: 2px solid #9ca3af;
  border-radius: 0.5rem;
  background: white;
  color: #2D5A5A;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
}

.dz-form-select {
  width: 120px;
  height: 44px;
  text-align: left;
  text-align-last: left;
  padding-left: 0.75rem;
  padding-right: 2rem;
  background-position: right 0.5rem center;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232D5A5A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  cursor: pointer;
}

.dz-form-hint {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center !important;
  justify-self: center !important;
  width: 100%;
}

.dz-unit-text {
  font-size: 1rem;
  color: #2D5A5A;
  font-weight: 500;
  min-width: 30px;
  flex-shrink: 0;
  text-align: center !important;
}

.dz-btn { 
  padding: 0.75rem 2rem; 
  border-radius: 0.5rem; 
  font-weight: 600; 
  border: none; 
  cursor: pointer; 
  transition: all 0.2s; 
  min-width: 120px; 
  font-size: 1rem; 
}

.dz-btn-primary { 
  background: #00AEED; 
  color: white; 
}

.dz-btn-primary:hover { 
  background: #3FCBEF; 
}

.dz-btn-secondary { 
  background: #AEDC49; 
  color: white; 
}

.dz-btn-secondary:hover { 
  background: #9ED039; 
}

.dz-btn-group { 
  display: flex; 
  gap: 1rem; 
  justify-content: center; 
  flex-wrap: wrap; 
  margin-top: 2rem;
}

.dz-cost-summary { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin-bottom: 2rem; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto;
}

.dz-cost-box { 
  padding: 1.5rem; 
  border-radius: 0.75rem; 
  text-align: center; 
  border: none;
  min-width: 0;
  overflow: hidden;
}

.dz-cost-box-green { 
  background: #AEDC49; 
}

.dz-cost-box-blue { 
  background: #3FCBEF; 
}

.dz-cost-box-darkblue { 
  background: #00AEED; 
}

.dz-cost-box-yellow { 
  background: #FFF3CD; 
  border: 2px solid #FFE082; 
}

.dz-cost-box-yellow .dz-cost-value {
  color: #dc2626;
}

.dz-cost-label { 
  font-size: clamp(0.75rem, 1.8vw, 1rem); 
  font-weight: bold; 
  margin-bottom: 0.5rem; 
  color: white;
  white-space: nowrap;
}

.dz-cost-box-yellow .dz-cost-label {
  color: #2D5A5A;
  font-weight: bold;
}

.dz-cost-value { 
  font-size: clamp(1.25rem, 3vw, 1.75rem); 
  font-weight: bold; 
  color: #2D5A5A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dz-cost-value-white { 
  color: white; 
}

/* Desktop - Add bordered white square around breakdown */
.dz-breakdown { 
  margin-bottom: 2rem; 
  max-width: 600px;
  margin-left: auto; 
  margin-right: auto;
  padding: 1.5rem;
  background: white;
  border: 2px solid #B8E6E1;
  border-radius: 0.75rem;
}

.dz-breakdown h3 { 
  font-weight: bold; 
  color: #2D5A5A; 
  margin-bottom: 1rem; 
  font-size: 1.5rem; 
  text-align: center;
  width: 100%;
}

.dz-breakdown-item { 
  display: flex; 
  justify-content: space-between; 
  padding: 0.75rem 1rem; 
  color: #2D5A5A; 
  font-size: 1.25rem; 
  border-bottom: 1px solid #d1d5db; 
  align-items: center;
  width: 100%;
}

.dz-breakdown-item span:first-child {
  text-align: left;
  flex: 1;
  padding-right: 2rem;
}

.dz-breakdown-item span:last-child {
  text-align: right;
  flex: 0 0 auto;
  white-space: nowrap;
}

.dz-breakdown-total { 
  border-top: 3px solid #2D5A5A; 
  border-bottom: none; 
  padding-top: 1rem; 
  margin-top: 0.75rem; 
  font-weight: bold; 
  font-size: 1.5rem; 
}

.dz-comparison-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  margin-bottom: 2rem; 
}

.dz-comparison-box { 
  background: white; 
  border-radius: 0.75rem; 
  padding: 1.5rem; 
  border: 2px solid #B8E6E1; 
}

.dz-comparison-box:nth-child(2),
.dz-comparison-box:nth-child(3) {
  background: #FFF3CD;
  border: 2px solid #FFE082;
}

.dz-comparison-box h4 { 
  font-weight: bold; 
  color: #2D5A5A; 
  margin-bottom: 1rem; 
  font-size: 1.25rem; 
}

.dz-comparison-box p { 
  color: #2D5A5A; 
  margin: 0.75rem 0; 
  font-size: 1.125rem; 
}

.dz-comparison-box:nth-child(2) p strong,
.dz-comparison-box:nth-child(3) p strong {
  color: #dc2626;
}

.dz-savings-section { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
  margin-top: 2rem; 
}

.dz-savings-box { 
  background: white; 
  border-radius: 0.75rem; 
  padding: 1.5rem; 
  border: 2px solid #B8E6E1; 
}

.dz-savings-box h4 { 
  font-weight: bold; 
  color: #2D5A5A; 
  margin-bottom: 1rem; 
  font-size: 1.5rem; 
}

.dz-savings-item { 
  display: flex; 
  justify-content: space-between; 
  padding: 0.75rem 0; 
  color: #2D5A5A; 
  font-size: 1.25rem; 
  border-bottom: 1px solid #d1d5db; 
}

.dz-savings-total { 
  border-top: 3px solid #2D5A5A; 
  border-bottom: none; 
  padding-top: 1rem; 
  margin-top: 0.75rem; 
  font-weight: bold; 
  font-size: 1.5rem; 
}

.dz-savings-total span:last-child {
  color: #16a34a;
}

.dz-savings-highlight {
  color: #16a34a;
  font-weight: bold;
}

.dz-summary-section { 
  margin-bottom: 2rem; 
}

.dz-summary-section h3 { 
  font-weight: bold; 
  color: #2D5A5A; 
  margin-bottom: 1rem; 
  font-size: 1.5rem; 
  text-align: left;
}

.dz-summary-table { 
  width: 100%; 
  border-collapse: collapse; 
  margin: 20px 0; 
  max-width: 800px; 
  margin-left: auto; 
  margin-right: auto; 
}

.dz-summary-table th, .dz-summary-table td { 
  padding: 1rem; 
  text-align: left; 
  border-bottom: 1px solid #d1d5db; 
  color: #2D5A5A; 
  font-size: 1.25rem; 
}

.dz-summary-table th { 
  font-weight: bold; 
  background: white; 
  text-align: left;
}

.dz-summary-table td:first-child,
.dz-summary-table th:first-child {
  text-align: left;
}

.dz-summary-table td:nth-child(2), 
.dz-summary-table td:nth-child(3), 
.dz-summary-table th:nth-child(2), 
.dz-summary-table th:nth-child(3) { 
  text-align: right; 
}

.dz-summary-table td:nth-child(3) {
  background-color: #E8F8F5;
  font-weight: 600;
}

.dz-summary-table th:nth-child(3) {
  background-color: white;
  font-weight: bold;
}

.dz-comparison-title { 
  font-weight: 600; 
  color: #2D5A5A; 
  margin-bottom: 2rem; 
  margin-top: 2rem;
  font-size: 1.5rem; 
  text-align: left; 
}

.dz-progress-text { 
  font-size: 0.875rem; 
  color: #4b5563; 
  margin-top: 1rem; 
}

/* Tablet Responsive Styles */
@media (max-width: 768px) {
  .dz-container {
    padding: 0.5rem;
  }

  .dz-card {
    padding: 1.5rem 1rem;
  }

  .dz-card-title {
    font-size: 1.5rem;
  }

  .dz-card-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dz-grid-3 { 
    grid-template-columns: 1fr; 
    gap: 1rem; 
  }

  .dz-building-option {
    padding: 1.5rem 1rem;
  }

  .dz-building-icon { 
    width: 80px; 
    height: 80px; 
    margin-bottom: 1rem;
  }

  .dz-building-label {
    font-size: 1.25rem;
  }

  .dz-building-size {
    font-size: 1rem;
  }

  .dz-building-type-display {
    width: 90%;
    max-width: 500px;
    gap: 0.75rem;
    padding: 1rem;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto 2rem auto;
  }

  .dz-building-type-icon {
    width: 48px;
    height: 48px;
  }

  .dz-building-type-text {
    font-size: 1.25rem;
    text-align: center;
  }

  .dz-form-container {
    width: 95%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto;
  }

  .dz-form-row { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #d1d5db;
  }

  .dz-form-row:last-child {
    border-bottom: none;
  }

  .dz-form-label {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    color: #2D5A5A;
  }

  .dz-form-input-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: auto;
  }

  .dz-form-input, .dz-form-select {
    font-size: 1rem;
    width: 120px;
    height: 44px;
    text-align: left;
    padding: 0 0.75rem;
    border: 2px solid #9ca3af;
    border-radius: 0.5rem;
    background: white;
    color: #2D5A5A;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
  }

  .dz-form-select {
    width: 120px;
    height: 44px;
    text-align: left;
    text-align-last: left;
    padding-left: 0.75rem;
    padding-right: 2rem;
    background-position: right 0.5rem center;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232D5A5A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    cursor: pointer;
  }

  .dz-form-hint {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    width: 100%;
  }

  .dz-unit-text {
    font-size: 1rem;
    color: #2D5A5A;
    font-weight: 500;
    min-width: 30px;
    flex-shrink: 0;
  }

  .dz-btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    min-width: 100px;
  }

  .dz-btn-group {
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
  }

  #dz-step7 .dz-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #dz-step7 .dz-btn {
    width: 100%;
    max-width: 280px;
    padding: 0.85rem 1.5rem;
    text-align: center;
  }

  .dz-cost-summary { 
    grid-template-columns: 1fr; 
    gap: 1rem;
    max-width: 100%;
  }

  .dz-cost-box {
    padding: 1.25rem;
    min-width: 0;
  }

  .dz-cost-label {
    font-size: clamp(0.8rem, 2vw, 1rem);
  }

  .dz-cost-value {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  }

  .dz-breakdown {
    max-width: 450px;
    padding: 1.25rem;
  }

  .dz-breakdown h3 {
    font-size: 1.25rem;
  }

  .dz-breakdown-item {
    font-size: 1rem;
    padding: 0.75rem 0.5rem;
  }

  .dz-breakdown-total {
    font-size: 1.25rem;
  }

  .dz-comparison-grid { 
    grid-template-columns: 1fr; 
    gap: 1rem;
  }

  .dz-comparison-box {
    padding: 1.25rem;
  }

  .dz-comparison-box h4 {
    font-size: 1.125rem;
  }

  .dz-comparison-box p {
    font-size: 1rem;
  }

  .dz-comparison-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .dz-savings-section { 
    grid-template-columns: 1fr; 
    gap: 1.5rem;
  }

  .dz-savings-box {
    padding: 1.25rem;
  }

  .dz-savings-box h4 {
    font-size: 1.25rem;
  }

  .dz-savings-item {
    font-size: 1rem;
    padding: 0.65rem 0;
  }

  .dz-savings-total {
    font-size: 1.25rem;
  }

  .dz-summary-table {
    font-size: 0.875rem;
    max-width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dz-summary-table thead,
  .dz-summary-table tbody,
  .dz-summary-table tr {
    display: table;
    width: 100%;
    table-layout: fixed;
  }

  .dz-summary-table th, .dz-summary-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    word-wrap: break-word;
  }

  .dz-summary-table th:first-child,
  .dz-summary-table td:first-child {
    width: 40%;
    text-align: left;
  }

  .dz-summary-table th:nth-child(2),
  .dz-summary-table td:nth-child(2),
  .dz-summary-table th:nth-child(3),
  .dz-summary-table td:nth-child(3) {
    width: 30%;
    text-align: right;
  }

  .dz-summary-section h3 {
    font-size: 1.25rem;
  }

  .dz-step-indicator {
    gap: 0.35rem;
    padding: 0 1rem;
  }

  .dz-step-circle { 
    width: 32px; 
    height: 32px; 
    font-size: 0.875rem; 
  }

  .dz-step-label { 
    font-size: 0.6rem; 
    max-width: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dz-step-indicator::before {
    top: 16px;
    left: 8%;
    right: 8%;
  }

  .dz-step-item.dz-completed .dz-step-circle::after {
    font-size: 0.75rem;
  }

  .dz-progress-text {
    font-size: 0.8rem;
  }

  .dz-progress-container {
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 480px) {
  .dz-container {
    padding: 0.25rem;
  }

  .dz-card {
    padding: 1rem 0.75rem;
    border-radius: 0.75rem;
  }

  .dz-card-title {
    font-size: 1.25rem;
  }

  .dz-card-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dz-building-icon {
    width: 60px;
    height: 60px;
  }

  .dz-building-label {
    font-size: 1.1rem;
  }

  .dz-building-type-display {
    padding: 0.75rem;
    width: 90%;
  }

  .dz-building-type-icon {
    width: 40px;
    height: 40px;
  }

  .dz-building-type-text {
    font-size: 1.1rem;
  }

  .dz-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
    min-width: 90px;
  }

  #dz-step7 .dz-btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 0.75rem;
  }

  #dz-step7 .dz-btn {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.25rem;
    text-align: center;
  }

  .dz-step-indicator {
    gap: 0.25rem;
    padding: 0 0.5rem;
  }

  .dz-step-circle {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }

  .dz-step-label {
    font-size: 0.5rem;
    max-width: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .dz-step-indicator::before {
    top: 14px;
    left: 5%;
    right: 5%;
  }

  .dz-step-item.dz-completed .dz-step-circle::after {
    font-size: 0.65rem;
  }

  .dz-breakdown {
    padding: 1rem;
  }

  .dz-breakdown h3 {
    font-size: 1.1rem;
  }

  .dz-breakdown-item {
    font-size: 0.9rem;
    padding: 0.65rem 0.5rem;
  }

  .dz-breakdown-total {
    font-size: 1.1rem;
  }

  .dz-cost-label {
    font-size: clamp(0.7rem, 2.5vw, 0.95rem);
  }

  .dz-cost-value {
    font-size: clamp(1rem, 3.5vw, 1.3rem);
  }

  .dz-comparison-box {
    padding: 1rem;
  }

  .dz-comparison-box h4 {
    font-size: 1rem;
  }

  .dz-comparison-box p {
    font-size: 0.9rem;
  }

  .dz-comparison-title {
    font-size: 1.1rem;
  }

  .dz-savings-box {
    padding: 1rem;
  }

  .dz-savings-box h4 {
    font-size: 1.1rem;
  }

  .dz-savings-item {
    font-size: 0.9rem;
    padding: 0.6rem 0;
  }

  .dz-savings-total {
    font-size: 1.1rem;
  }

  .dz-summary-table {
    font-size: 0.75rem;
  }

  .dz-summary-table th, .dz-summary-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }

  .dz-summary-table th:first-child,
  .dz-summary-table td:first-child {
    width: 35%;
    padding-left: 0.5rem;
  }

  .dz-summary-table th:nth-child(2),
  .dz-summary-table td:nth-child(2),
  .dz-summary-table th:nth-child(3),
  .dz-summary-table td:nth-child(3) {
    width: 32.5%;
    padding-right: 0.25rem;
  }

  .dz-summary-section h3 {
    font-size: 1rem;
  }

  .dz-progress-text {
    font-size: 0.75rem;
  }

  .dz-progress-container {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
  }
}