body, span, font, td, th { 
    font-family: Verdana, Arial, sans-serif;
    font-size: 10pt;
    color: #333333;
}

.klein {
    font-size: x-small;
}

/* Links */
a:link, a:visited, a:hover, a:active {
    color: #30c4bf; /* Türkis */
    text-decoration: none;
}

.container {
    margin: 0 auto;
    max-width: 480px;
}


.kartenanzahl-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.count-input {
  width: 40px;
  text-align: center;
  font-size: 1rem;
  padding: 2px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  
}



.button3 {
  padding: 4px 8px;
  font-size: 1rem;
  line-height: 1;
}


@media (max-width: 480px) {
  input.count {
    max-width: 40px;
  }
}




input {
    border: 1px solid #ccc;
    padding: 2px;
    font-family: Verdana, Arial, sans-serif;
    font-size: 10pt;
    background-color: #fffbe7; /* Helles Beige */
}

.inputblank {
    background-color: #000;
}

.button {
    height: 30px;
    padding: 0 10px;
    border: 0;
    background-color: #f6931d; /* Orange */
    color: white;
    font-weight: bold;
    font-size: 10pt;
    float: right;
    display: block;
    cursor: pointer;
}

.button:hover {
    background-color: #e07b00;
}

.button2 {
    height: 30px;
    padding: 0 5px;
    border: 0;
    background-color: #a5d94c; /* Hellgrün */
    color: #333;
    font-weight: bold;
    font-size: 8pt;
    text-decoration: none;
    float: left;
    display: block;
    cursor: pointer;
}

.button3 {
    height: 30px;
    width: 30px;
    padding: 0 3px;
    border: 0;
    background-color: #a5d94c;
    font-family: "Arial Black", sans-serif;
    color: #333;
    font-weight: 900;
    font-size: 8pt;
    cursor: pointer;
}

/* Style buttons */
.btn {
    background-color: #30c4bf; /* Türkis */
    border: none;
    color: white;
    padding: 6px 20px;
    cursor: pointer;
    font-size: 12px;
}

.btn:hover {
    background-color: #249c98;
}

.count {
    border: 0;
    color: #f6931d !important;
    border-radius: 4px;
    font-weight: bold;
    font-family: Verdana, Arial, sans-serif;
    text-align: right;
    background-color: #fff;
}


/* Event-Links */
.event a:link,
.event a:visited,
.event a:hover {
    text-decoration: none;
    background-color: #fffbe7;
    color: #30c4bf;
}

/* Gutscheinfeld */
#voucher-container {
    margin-top: 10px;
    display: block;
}

#voucher-container input {
    margin-top: 5px;
    width: 100%;
    padding: 8px;
}

#voucher-container button {
    display: block;
    margin-bottom: 10px;
    background-color: #f6931d;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
}

#voucher-container button:hover {
    background-color: #e07b00;
}

/* Info-Icon */
.info-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    font-size: 18px;
    color: #30c4bf;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: #e0f0ff;
}

.info-icon .tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.info-icon .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.info-icon:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Vollbild-Ladebildschirm */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
