/* Overview page content */

.overview-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.overview-payments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.overview-payments-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2F2F2F;
}

.overview-workspace-url {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--color-accent) !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  word-break: break-all;
}

.overview-workspace-url:hover {
  text-decoration: underline !important;
}

@media (min-width: 768px) {
  .overview-cards {
    grid-template-columns: 1fr 1fr;
  }
}
