#bannergenerator-wrapper {
    text-align: left;
    font-family: Arial, sans-serif;
}
#background-selector {
    display: flex;
    flex-direction: row; /* Display items in a row */
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 10px;
    margin-bottom: 20px;
}
.background-option {
    width: 160px;
    height: 80px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border 0.3s;
}
.background-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.background-option.selected {
    border: 3px solid #62c3d0;
    border-radius: 9px;
}
#banner-container {
    position: relative;
    width: 600px;
    height: 200px;
    margin: 20px auto;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
#banner-text {
    position: absolute;
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 90%;
    content: "Vorschau deines Banners";
}
#banner-name {
    position: absolute;
    bottom: -15px;
    right: 0px;
    background: white;
    color: black;
    font-size: 15px;
    padding: 5px 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    content: "Name & Ort";
}
#input-container {
    display: flex;
    gap: 10px;
    justify-content: left;
    align-items: center;
    margin-bottom: 20px;
}
#input-container input {
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    border: 2px solid #146e75;
    color: black;
}
#input-container select {
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    border: 2px solid #146e75;
    color: #146e75;
}
#font-color-selector {
    height: 40px;
    padding: 5px 10px;
    font-size: 16px;
    border: 2px solid #146e75;
    color: #146e75;
}
input, select, button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
}

input::placeholder {
    color: var(--placeholder-color);
}

.background-list {
    margin: 20px 0;
}

.background-item {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
}

.background-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.bannergenerator-preview {
    padding: 20px;
    border: 1px solid #ddd;
}

button:hover {
    background-color: var(--button-hover-color);
}