/* Allgemeines Styling */
body {
     font-family: 'Open Sans', sans-serif;
    line-height: 1.6; /* Angenehme Lesbarkeit */
    text-align: center;
    background-color: #1E242F;
    margin: 0px;
	margin-bottom: 40px;
}
h1 {
    color: #FFFFFF;
    font-size: 26px;
}
p {
    color: #FFFFFF;
    font-size: 16px;
}
a {
    color: #FFFFFF;
    font-size: 14px;
}

/* Header */
header {
    position: relative;
}

/* Headerbild */
header img {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    display: block;
}
/* Kategorien im Grid-Layout */
.category-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    gap: 15px;
    padding: 0px;
    justify-items: center;
}

/* Kategorie-Buttons */
.category {
    display: block;
    width: 85%; /* Ganze Breite */
    padding: 15px;
    background-color: #25D366;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0px;
    text-align: center;
    transition: background 0.3s;
}

.category:hover {
    background-color: #1ebe5d;
}

/* Sticker-Container mit 2 Spalten */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
    justify-items: center;
}

/* Sticker-Wrapper */
.sticker-wrapper {
    position: relative;
    display: inline-block;
    text-align: center;
}

/* Sticker-Bilder */
.sticker-wrapper img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.sticker-wrapper img:hover {
    transform: scale(1.1);
}

/* Checkbox über dem Sticker */
.sticker-checkbox {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
}


/* Button Styling */
button {
    display: block;
    width: 100%; /* Ganze Breite */
    padding: 15px 0;
	background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 0px;
    cursor: pointer;
    margin-top: 20px;
}

button:hover {
    background-color: #1ebe5d;
}

/* Checkbox-Container */
.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
	font-size: 16px;
color: #FFFFFF}

/* Zurück-Button */
.back-button {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

.back-button img {
    width: 30px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
}

.back-button img:hover {
    opacity: 1;
}

/* Sticker-Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
    justify-items: center;
}

/* Sticker */
.sticker-wrapper img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.sticker-checkbox {
    position: absolute;
    top: 50px;
    left: -25px;
    width: 20px;
    height: 20px;
}

/* iOS-Seite */
.ios-content {
    padding: 0 20px;
    text-align: left;
}

.ios-content h1 {
    color: #ffffff;
    font-size: 24px;
}

.ios-content h2 {
    color: #ffffff;
    font-size: 20px;
}

.ios-content p {
    color: #555;
    font-size: 16px;
}
/* Größere Checkbox für "Alle auswählen" */
#selectAll {
    width: 20px;
    height: 20px;
}
/* Stil für den individuellen Button */
.custom-button {
    display: block;
    width: 100%; /* Ganze Breite */
    padding: 15px 0;
    background-color: #1F2A33; aber kann angepasst werden */
    color: white;
    text-align: center;
    font-size: 18px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    margin-top: 20px;
}

.custom-button:hover {
    background-color: #1C1C1C; /* Dunkleres Orange beim Hover */
}

