 body {
    background: #626262;
    color: #FFFFFF;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-style: italic;
    margin: 0;
    padding: 0;
  }

  main.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 20px 20px; /* oben 30px, Seiten 20px, unten 20px */
  }

  h1 {
    text-align: center;
    color: #FFFFFF;
    font-style: italic;
  }

  .hinweisbox {
    max-width: 600px;
    margin: 0 auto 20px auto;
    background: #626262;
    padding: 12px 15px;
    border-radius: 8px;
    color: #FFFFFF;
    font-style: italic;
    text-align: center;
  }

  form {
    background: #484848;
    padding: 20px;
    border-radius: 8px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }

  td.my {
    padding: 8px 5px;
    vertical-align: top;
  }

  input.field, textarea.field {
    width: 100%;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #999;
    box-sizing: border-box;
  }

  input[type="submit"], input[type="reset"] {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #E2D07A;
    color: #000;
    font-weight: bold;
  }

  .copyright {
    text-align: center;
    color: #FFFFFF;
    margin-top: 20px;
    font-size: 0.9em;
  }

  a {
    color: #E2D07A;
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  #the-count_message {
    font-size: 0.9em;
    padding-top: 2px;
  }
  
  /* Rahmen wie auf den anderen Seiten */
.box-rahmen {
  border: 2px solid #E2D07A; /* goldener Rahmen wie bei deinen Seiten */
  background: #626262;        /* Hintergrundfarbe wie auf deinen Seiten */
  border-radius: 8px;         /* abgerundete Ecken */
  padding: 15px;              /* Innenabstand */
  max-width: 600px;           /* Breite wie bei deinen anderen Boxen */
  margin: 0 auto 20px auto;   /* zentriert */
  color: #FFFFFF;             /* Textfarbe */
}

.box-rahmen h1 {
  text-align: center;         /* Überschrift zentriert im Rahmen */
  margin-top: 0;
}

.hinweisbox {
  text-align: left;           /* Hinweistext linksbündig im Rahmen */
  font-style: italic;
  margin-top: 10px;
}

.button-style {
  background-color: #E2D07A; /* Goldene Farbe */
  color: #000000;             /* Standard-Schriftfarbe */
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button-style:hover {
  background-color: #626262;  /* Dunkler beim Hover */
  color: #FFFFFF;             /* Schrift wird weiß */
}

nav a {
  font-family: inherit !important;
  font-style: inherit !important;
  font-weight: inherit !important;
  font-size: inherit !important;
}
.upload-hint {
    font-size: 12px;
    color: #FFD;
    margin-top: 3px;
    font-style: italic;
}
/* Standard: nebeneinander */
.button-style {
    margin: 4px;
}

/* Mobil: untereinander */
@media (max-width: 600px) {
    .button-style {
        display: block;
        width: 100%;
        margin: 6px 0;
    }
}
.upload-wrapper {
    margin-bottom: 6px;
}

#file_input {
    display: none; /* Browser-Button verstecken */
}

.upload-btn {
    background-color: #626262;
    color: white;
    font-style: italic;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
}

.filename {
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
}