/* Banner de instalação da extensão Chrome - Timesaver */
.ext-banner-container {
  display: flex;
  display:  none;
  justify-content: center;
  margin: 24px 0;
}
.ext-card {
  width: 100%;
  max-width: 520px;
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #0001;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e3e8ee;
}
.ext-card .ext-text {
  flex: 1;
  min-width: 0;
}
.ext-card .ext-title {
  font-size: 24px;
  font-weight: 600;
  color: #1976d2;
  line-height: 1.2;
}
.ext-card .ext-desc {
  font-size: 18px;
  color: #444;
  margin-top: 2px;
}
.ext-card .ext-btn {
  background: #1976d2;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 4px #0002;
  transition: background 0.2s;
  font-size: 24px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.ext-card .ext-btn:hover {
  background: #1456a0;
}
@media (max-width: 600px) {
  .ext-card {
    padding: 10px 8px;
    gap: 8px;
    max-width: 98vw;
  }
  .ext-card .ext-title, .ext-card .ext-desc {
    font-size: 0.98em;
  }
  .ext-card .ext-btn {
    padding: 7px 10px;
    font-size: 0.96em;
  }
}
