/* Notizen Button - Button-27 Style */
.notizen {
  position: relative;
  padding: 10px 20px;
  background: linear-gradient(0deg, #fcfcfc 0%, #f5f5f5 100%);
  border: 4px solid transparent;
  border-radius: 14px;
  background-clip: padding-box;
  box-shadow: 0 15px 45px -15px #000, 1px 3px 3px 2px #fff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: all 0.1s ease-in-out;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding-left: 60px;
  gap: 15px;
  cursor: pointer;
  width: 100%;
  white-space: nowrap;
}

.notizen:after {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  right: -4px;
  background: linear-gradient(#fff, #ededed);
  content: "";
  z-index: -1;
  border-radius: 14px;
}

.notizen::before {
  content: '📝';
  font-size: 28px;
  width: 35px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.notizen .text {
  font-weight: 600;
  color: #374151;
}

.notizen:hover {
  border: 2px solid transparent;
  background-image: linear-gradient(180deg, #E6E6E6 0%, #F7F7F7 100%);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
  z-index: 10;
}

.notizen:active {
  border-top: 1px solid transparent;
}
