body {
  margin: 0;
  background: linear-gradient(to top right, #480070, #090081, #000);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.iphone-frame {
  width: 393px;
  height: 852px;
  background-color: white;
  border: 5px solid #CFCFCF;
  border-radius: 40px;
  box-shadow: 4px 4px 1px #616161;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.corner-btn {
  position: absolute;
  top: 60px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1100;
  transition: 0.2s ease;
}

#create-btn {
  left: 20px;
}

#create-btn:hover {
  transform: scale(1.04);
}

#scan-btn {
  right: 20px;
}

#scan-btn:hover {
  transform: scale(1.04);
}

.corner-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  pointer-events: none;
}

.tickets-title {
  margin-top: 100px;
  font-weight: bold;
  font-size: 25px;
  margin-left: 30px;
  color: #480070;
}

#scroll-panel {
  position: relative;
  height: calc(100% - 160px);
  overflow-y: auto;
  padding: 0 10px 80px 10px;
  box-sizing: border-box;

}

#scroll-panel::-webkit-scrollbar {
  display: none;
}

.scrollable-tickets {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px
}

.ticket-card {
  position: relative;
  width: calc(100% - 40px);
  margin: 0px 20px;
  overflow: hidden;
}

.ticket-bg {
  width: 100%;
  height: auto;
  display: block;
}

.ticket-content-vertical {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
  pointer-events: none;
}

.ticket-text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.ticket-title {
  margin-left: 10px;
  font-weight: bold;
  font-size: 22px;
  color: #480070;
}

.ticket-subtitle {
  margin-left: 10px;
  font-weight: bold;
  font-size: 14px;
  color: #979797;
}

.ticket-subtitle2 {
  margin-top: -5px;
  margin-left: 10px;
  font-size: 12px;
  color: #979797;
}

.ticket-platzinfo {
  margin-top: 5px;
  margin-left: 10px;
  font-size: 14px;
  color: #979797;
}

.ticket-image-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ticket-icon-vertical {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 3px 3px 1px rgba(207, 207, 207, 0.438);
}

.ticket-icon-vertical2 {
  margin-right: 10px;
  width: 70px;
  height: 70px;
}

.bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  border-top: 1px solid #480070;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-sizing: border-box;
  padding: 0 10px;
  z-index: 99999;
}

.nav-icon {
  width: 26px;
  height: 26px;
  margin-top: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon img {
  width: 100%;
  height: auto;
  transition: 0.2s ease;
  cursor: pointer;
}

.center-icon {
  width: 40px;
  height: 40px;
}

.center-icon :hover {
    transform: scale(1.1);
}