/* Allgemeine Einstellungen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3 {
    color: #00ff00;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    padding: 20px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(90deg, #0d0d0d, #1a1a1a);
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaaaaa;
    border-top: 1px solid #333;
}

footer a {
    color: #00ff00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Buttons */
button {
    background-color: #00ff00;
    color: #121212;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #00cc00;
    transform: scale(1.05);
}

.file-upload {
    display: inline-block;
    margin-top: 10px;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    background-color: #00ff00;
    color: #121212;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload label:hover {
    background-color: #00cc00;
}

/* Input- und Textfelder */
input[type="text"], textarea {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

input[type="text"]:focus, textarea:focus {
    border-color: #00ff00;
    outline: none;
    box-shadow: 0 0 5px #00ff00;
}

/* Counter-Stile */
.counter {
    font-size: 0.9rem;
    margin-top: -5px;
    margin-bottom: 15px;
}

.counter.green {
    color: #00ff00;
}

.counter.yellow {
    color: #ffcc00;
}

.counter.red {
    color: #ff3333;
}

/* Abschnitte */
main {
    margin: 20px 0;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Anleitung */
.instructions


/* CCM19 Cookie Manager */

.ccm-modal--header,
.ccm-modal--footer,
.ccm-modal--body {
  background: {{ windowBackgroundColor }};
}

.cover-scrollbar::before {
  background: transparent;
}

.ccm-inner-overflow {
  overflow-y: auto;
}

.ccm-widget--text::after {
  background-image: none;
}
.ccm-widget--text .ccm-widget--title {
  margin-bottom: 20px;
  font-size: 27px;
}

.ccm-modal--body {
  border-bottom: 0;
}

@media screen and (min-width: {{ breakpoints.desktop }}) {
  .ccm--alignment--center .ccm-modal-inner {
    max-width: 755px;
    border: 1px solid {{ windowBorderColor }};
    border-radius: 5px;
    overflow: hidden;
  }
}

.ccm-powered-by a:link, .ccm-powered-by a:visited,
.ccm-modal--footer .ccm-link-container a:link,
.ccm-modal--footer .ccm-link-container a:visited {
  color: {{ windowLinkColor }};
}

.ccm-root .ccm-widget--buttons .button, .ccm-root .ccm-widget--buttons button,
.ccm-modal--footer .button, .ccm-modal--footer .ccm--ctrl-init {
  border-radius: 3px;
  text-transform: unset;
  text-shadow: none;
}

.ccm-widget .ccm-modal--footer {
  margin-top: -1px;
}

.ccm-root input[type="checkbox"].ccm-checkbox-type--switch:checked + label::after {
  background-color: {{ primaryColor|darken(20) }};
}
.ccm-root input[type="checkbox"].ccm-checkbox-type--switch:checked + label::before {
  background-color: {{ primaryColor|lighten(20) }};
}