/* NOTE start css job-button oben nur auf index.html */

.fixed-button {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #e1670a;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  transform: rotate(0deg);
  transform-origin: center;
  z-index: 3000;
}

.fixed-button:hover {
  background-color: #880202;
}

/* Mobile Anpassung */
@media (max-width: 980px) {
  .fixed-button {
    top: 74px;
    right: 10px;
    padding: 8px 14px;
    font-size: 12px;
    width: 60px;
  }
}
/* NOTE end css job-button oben nur auf index.html */
