/* === Global Button Style: st_btn_new === */
.st-btn-new {
  background-color: var(--primary-color, #5d6f0e); /* fallback green */
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background-color 0.3s;
}

.st-btn-new:hover {
  background-color: #38733b;
}

.st-btn-new .btn-icon {
  margin-bottom: 6px;
}

.st-btn-new .btn-text {
  line-height: 1.2;
  font-weight: bold;
}
