/* /Pages/EBAY.razor.rz.scp.css */
ul[b-lkf18hgy1a] {
    list-style: none;
    padding: 0;
}

li[b-lkf18hgy1a] {
    background: #23272f;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

li:hover[b-lkf18hgy1a] {
    background: #2c313a;
}

li a[b-lkf18hgy1a] {
    color: #4ea1f7;
    text-decoration: none;
    font-weight: 500;
    flex: 1;
    transition: color 0.2s;
}

li a:hover[b-lkf18hgy1a] {
    color: #1e90ff;
    text-decoration: underline;
}

li b[b-lkf18hgy1a] {
    color: #ffd700;
    margin-left: 16px;
    font-size: 1.1rem;
    font-weight: bold;
}
/* /Pages/FLOHMÄRKTE.razor.rz.scp.css */
/* Allgemeine Tabellenstile */
.flohmarkt-table[b-kg9f9ylzq2] {
    width: 80%; /* Passe die Breite nach Bedarf an */
    margin: 20px auto; /* Zentriert die Tabelle */
    border-collapse: collapse; /* Verhindert doppelte Linien zwischen Zellen */
    background-color: #222; /* Dunkler Hintergrund */
    color: #fff; /* Weiße Schrift */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

    .flohmarkt-table th[b-kg9f9ylzq2],
    .flohmarkt-table td[b-kg9f9ylzq2] {
        border: 1px solid #444; /* Dunkler Rahmen für Zellen */
        padding: 12px; /* Innenabstand */
        text-align: left; /* Links ausgerichtet */
        font-size: 1rem; /* Schriftgröße anpassen */
    }

    .flohmarkt-table th[b-kg9f9ylzq2] {
        text-align: center;
        font-size: 2rem;
    }

    .flohmarkt-table thead[b-kg9f9ylzq2] {
        background-color: #333; /* Kopfzeile leicht abheben */
    }

    /* Past event style - höhere Spezifität */
    .flohmarkt-table tbody tr.past-event[b-kg9f9ylzq2] {
        background-color: rgba(255, 0, 0, 0.2) !important;
    }

    .flohmarkt-table tbody tr.past-event td[b-kg9f9ylzq2] {
        color: inherit;
    }

    .flohmarkt-table tbody tr:nth-child(even)[b-kg9f9ylzq2] {
        background-color: #2a2a2a; /* Abwechselnde Zeilenfärbung */
    }

    .flohmarkt-table tbody tr:hover[b-kg9f9ylzq2] {
        background-color: #3a3a3a; /* Hover-Effekt für Zeilen */
    }

    /* Past event hover - höhere Spezifität */
    .flohmarkt-table tbody tr.past-event:hover[b-kg9f9ylzq2] {
        background-color: rgba(255, 0, 0, 0.3) !important;
    }

    /* Link-Stile innerhalb der Tabelle anpassen */
    .flohmarkt-table a[b-kg9f9ylzq2] {
        color: #ad95ff; /* Link-Farbe */
        text-decoration: none;
    }

        .flohmarkt-table a:hover[b-kg9f9ylzq2] {
            color: #d4c4ff; /* Hover-Farbe */
            text-decoration: underline;
        }

.modal-backdrop[b-kg9f9ylzq2] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Modal-Container etwas schmaler */
.modal-content[b-kg9f9ylzq2] {
    position: relative;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    /* statt 80%, jetzt 60% des Viewports */
    max-width: 60vw;
    max-height: 60vh;
    overflow: hidden; /* Bild darf nicht rausragen */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.modal-close[b-kg9f9ylzq2] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Bild direkt auf max. 100% des Containers begrenzen */
.modal-img[b-kg9f9ylzq2] {
    display: block;
    margin: 0 auto;
    width: 100%; /* füllt Container-Breite */
    height: auto; /* behält Seitenverhältnis */
    /* zusätzlich max-Höhe in Relation zum Viewport, falls das Bild sehr schmal ist */
    max-height: 55vh;
    object-fit: contain; /* skaliert ohne Verzerren */
}

.modal-navigation[b-kg9f9ylzq2] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.flohmarkt-table td:first-child[b-kg9f9ylzq2], .flohmarkt-table th:first-child[b-kg9f9ylzq2] {
    white-space: nowrap;
}

.flohmarkt-table td:nth-child(3)[b-kg9f9ylzq2],
.flohmarkt-table th:nth-child(3)[b-kg9f9ylzq2] {
    white-space: nowrap;
}

.flohmarkt-table td:nth-child(5)[b-kg9f9ylzq2],
.flohmarkt-table th:nth-child(5)[b-kg9f9ylzq2] {
    white-space: nowrap;
}

.nav-button[b-kg9f9ylzq2] {
    background-color: #444;
    color: white;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 2rem;
    font-weight: bold;
    transition: background-color 0.2s;
    margin: 0 0.5rem;
}

.nav-button:hover[b-kg9f9ylzq2] {
    background-color: #666;
}

.image-counter[b-kg9f9ylzq2] {
    color: white;
    font-size: 1rem;
    min-width: 60px;
    text-align: center;
}
/* /Pages/Konto.razor.rz.scp.css */
.konto-container[b-uke4l7u3ry] {
    max-width: 420px;
    margin: 0 auto;
}

.konto-container .auth-form-box[b-uke4l7u3ry] {
    margin-bottom: 24px;
    max-width: 360px;
    padding: 16px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.konto-container .auth-form-box h4[b-uke4l7u3ry] {
    margin: 0 0 12px 0;
    color: white;
    font-size: 1.1rem;
}

.konto-container .auth-form[b-uke4l7u3ry] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.konto-container .auth-label[b-uke4l7u3ry] {
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
}

.konto-container .auth-input[b-uke4l7u3ry] {
    padding: 10px 12px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
}

.konto-container .auth-input[b-uke4l7u3ry]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.konto-container .auth-form-buttons[b-uke4l7u3ry] {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.konto-container .btn-auth-submit[b-uke4l7u3ry] {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #28a745;
    color: white;
}

.konto-container .btn-auth-submit:hover[b-uke4l7u3ry] {
    background-color: #218838;
}

.konto-container .auth-hint[b-uke4l7u3ry] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.btn-back[b-uke4l7u3ry] {
    display: inline-block;
    margin-top: 20px;
    color: #007bff;
    text-decoration: none;
}

.btn-back:hover[b-uke4l7u3ry] {
    text-decoration: underline;
}
/* /Pages/SPIELE.razor.rz.scp.css */
.button-container[b-4ghzco64vc] {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sub-button-container[b-4ghzco64vc] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.btn[b-4ghzco64vc] {
    padding: 10px 20px; /* Kleinere Buttons */
    font-size: 1rem; /* Kleinere Schrift */
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: white;
    text-transform: uppercase;
}

    .btn:hover[b-4ghzco64vc] {
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    }

/* Konsolen Farben */
.playstation[b-4ghzco64vc] {
    background-color: #003791;
    box-shadow: 0 3px 5px rgba(0, 55, 145, 0.5);
}

.xbox[b-4ghzco64vc] {
    background-color: #107c10;
    box-shadow: 0 3px 5px rgba(16, 124, 16, 0.5);
}

.nintendo[b-4ghzco64vc] {
    background-color: #e60012;
    box-shadow: 0 3px 5px rgba(230, 0, 18, 0.5);
}

.sega[b-4ghzco64vc] {
    background-color: #0089cf;
    box-shadow: 0 3px 5px rgba(0, 137, 207, 0.5);
}

.atari[b-4ghzco64vc] {
    background-color: #e52b50;
    box-shadow: 0 3px 5px rgba(229, 43, 80, 0.5);
}

/* Modul, OVP, Sealed, Hardware */
.detail[b-4ghzco64vc] {
    background-color: #ffffff;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 3px 5px rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

    .detail:hover[b-4ghzco64vc] {
        background-color: #f5f5f5;
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(255, 255, 255, 0.4);
    }

/* Gesamtcontainer für Spiele */
.game-container[b-4ghzco64vc] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 95%;
    margin: 0 auto;
}

/* Spielkarte */
.game-card[b-4ghzco64vc] {
    display: flex;
    align-items: center; /* Inhalte vertikal zentrieren */
    background-color: #1a1a1a;
    padding: 10px; /* Weniger Innenabstand */
    border-radius: 8px;
    border: 2px solid white;
    width: 100%;
    min-height: 250px; /* Mindesthöhe reduzieren */
}

/* Linke Spalte: Info-Box */
.game-info[b-4ghzco64vc] {
    width: 350px; /* Schmaler machen für mehr Platz für Bilder */
    padding-right: 15px;
    font-size: 1rem; /* Kleinere Schrift für kompaktere Darstellung */
    line-height: 1.3; /* Weniger Abstand zwischen Zeilen */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .game-info h4[b-4ghzco64vc] {
        font-size: 20px;
        font-weight: bold;
    }
    /* Rechte Spalte: Bilder */
    .game-images[b-4ghzco64vc] {
        display: flex;
        flex-direction: row; /* Bilder horizontal anordnen */
        flex-wrap: wrap; /* Bilder dürfen umbrechen */
        gap: 5px;
        justify-content: flex-start;
        align-items: flex-start;
        width: 100%; /* Volle Breite nutzen */
    }

    /* Bilder anpassen */
    .game-images img[b-4ghzco64vc] {
        width: 120px; /* Feste, kleinere Breite */
        height: 160px; /* Kleinere Höhe */
        border-radius: 5px;
        flex-shrink: 0; /* Bilder behalten ihre Größe */
        object-fit: contain; /* Bild wird vollständig angezeigt ohne Beschnitt */
    }

    /* Größere Bilder für Desktop/PC */
    @media screen and (min-width: 1024px) {
        .game-images img[b-4ghzco64vc] {
            width: 180px; /* Größere Breite für Desktop */
            height: 240px; /* Größere Höhe für Desktop */
        }
    }

/* Suchleiste */
.search-box[b-4ghzco64vc] {
    display: block;
    margin: 0 auto; /* Zentriert das Element */
    width: 50%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px; /* Mindestens 16px um automatisches Zoomen auf mobilen Geräten zu verhindern */
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background-color: #1a1a1a;
    color: white;
}

/* Mobile Optimierung für Suchfeld */
@media screen and (max-width: 768px) {
    .search-box[b-4ghzco64vc] {
        font-size: 18px; /* Größere Schrift für mobile Geräte */
        padding: 12px; /* Mehr Padding für bessere Touch-Target */
        width: 90%; /* Breiter auf mobilen Geräten */
        max-width: none;
    }
}

.total-games[b-4ghzco64vc] {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin: 10px auto;
    display: block;
    width: 100%;
}

/* Links für eBay */
.ebay-link[b-4ghzco64vc] {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

    .ebay-link:hover[b-4ghzco64vc] {
        text-decoration: underline;
    }

    .ebay-link:visited[b-4ghzco64vc] {
        color: #007bff;
    }

/* Preis in grün */
.price[b-4ghzco64vc] {
    color: #28a745;
    font-weight: bold;
}

.scroll-to-top[b-4ghzco64vc] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: black; /* Hintergrund jetzt komplett schwarz */
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 50px; /* Pfeil deutlich größer */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3); /* Hellerer Schatten für besseren Kontrast */
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

    .scroll-to-top:hover[b-4ghzco64vc] {
        background-color: rgba(255, 255, 255, 0.2); /* Leichtes Weiß beim Hover */
        transform: scale(1.1); /* Beim Hover etwas größer */
    }

    /* Button nur anzeigen, wenn nötig */
    .scroll-to-top.visible[b-4ghzco64vc] {
        opacity: 1;
    }

/* Modal für große Bilder */
.image-modal[b-4ghzco64vc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.image-modal img[b-4ghzco64vc] {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid white;
    border-radius: 8px;
}

/* Price Toggle Switch */
.price-toggle-container[b-4ghzco64vc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.price-toggle[b-4ghzco64vc] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.price-toggle input[b-4ghzco64vc] {
    opacity: 0;
    width: 0;
    height: 0;
}

.price-toggle-slider[b-4ghzco64vc] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.price-toggle-slider[b-4ghzco64vc]:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .price-toggle-slider[b-4ghzco64vc] {
    background-color: #2196F3;
}

input:checked + .price-toggle-slider[b-4ghzco64vc]:before {
    transform: translateX(26px);
}

.price-toggle-label[b-4ghzco64vc] {
    color: white;
    font-weight: bold;
}

/* Code Prompt */
.code-prompt-container[b-4ghzco64vc] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.code-input[b-4ghzco64vc] {
    padding: 8px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
}

.btn-verify[b-4ghzco64vc], .btn-cancel[b-4ghzco64vc] {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: white;
}

.btn-verify[b-4ghzco64vc] {
    background-color: #28a745; /* Green */
}

.btn-verify:hover[b-4ghzco64vc] {
    background-color: #218838;
}

.btn-cancel[b-4ghzco64vc] {
    background-color: #dc3545; /* Red */
}

.btn-cancel:hover[b-4ghzco64vc] {
    background-color: #c82333;
}
/* /Pages/SPIELESAMMLUNG/HAUPT/SPIELESAMMLUNG.razor.rz.scp.css */
/* Top-Bereich: Discord + Auth nebeneinander */
.top-bar[b-rlkgni5hc0] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.discord-link[b-rlkgni5hc0] {
    color: #5865F2;
    text-decoration: none;
    font-weight: bold;
}

.discord-link:hover[b-rlkgni5hc0] {
    text-decoration: underline;
}

/* Auth-Leiste: Anmelden | Registrieren oder Angemeldet */
.auth-bar[b-rlkgni5hc0] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.auth-user[b-rlkgni5hc0] {
    color: white;
    font-size: 0.95rem;
}

.auth-sep[b-rlkgni5hc0] {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.auth-user-select[b-rlkgni5hc0] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.9rem;
}

.auth-select[b-rlkgni5hc0] {
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
}

.btn-auth[b-rlkgni5hc0] {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #2a2a2a;
    color: white;
    transition: background-color 0.2s;
}

.btn-auth:hover[b-rlkgni5hc0] {
    background-color: #3a3a3a;
}

.btn-logout[b-rlkgni5hc0] {
    background-color: #555;
}

.btn-logout:hover[b-rlkgni5hc0] {
    background-color: #666;
}

/* Anmelden/Registrieren Formular-Box */
.auth-form-box[b-rlkgni5hc0] {
    max-width: 360px;
    margin: 0 auto 20px;
    padding: 16px;
    background-color: #1a1a1a;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.auth-form-box h4[b-rlkgni5hc0] {
    margin: 0 0 12px 0;
    color: white;
    font-size: 1.1rem;
}

.auth-form[b-rlkgni5hc0] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-label[b-rlkgni5hc0] {
    color: white;
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 4px;
}

.auth-label:first-of-type[b-rlkgni5hc0] {
    margin-top: 0;
}

.auth-hint[b-rlkgni5hc0] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0 0 4px 0;
}

.auth-file-count[b-rlkgni5hc0] {
    color: #28a745;
    font-size: 0.9rem;
}

.auth-file-multi[b-rlkgni5hc0] {
    margin-bottom: 4px;
}

.auth-input[b-rlkgni5hc0] {
    padding: 10px 12px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
}

.auth-input[b-rlkgni5hc0]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-form-buttons[b-rlkgni5hc0] {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.btn-auth-submit[b-rlkgni5hc0] {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #28a745;
    color: white;
    transition: background-color 0.2s;
}

.btn-auth-submit:hover[b-rlkgni5hc0] {
    background-color: #218838;
}

.btn-auth-cancel[b-rlkgni5hc0] {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #555;
    color: white;
    transition: background-color 0.2s;
}

.btn-auth-cancel:hover[b-rlkgni5hc0] {
    background-color: #666;
}

/* Neues Spiel hinzufügen */
.add-game-bar[b-rlkgni5hc0] {
    margin-bottom: 16px;
    text-align: center;
}

.btn-add-game[b-rlkgni5hc0] {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background-color: #28a745;
    color: white;
    transition: background-color 0.2s;
}

.btn-add-game:hover[b-rlkgni5hc0] {
    background-color: #218838;
}

.add-game-form.auth-form-box[b-rlkgni5hc0] {
    max-width: 420px;
}

.auth-checkbox[b-rlkgni5hc0] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
}

.auth-form-row[b-rlkgni5hc0] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    flex-wrap: wrap;
}

.auth-file[b-rlkgni5hc0] {
    font-size: 0.9rem;
    color: white;
}

/* Ab hier wie SPIELE.razor.css */
.button-container[b-rlkgni5hc0] {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.sub-button-container[b-rlkgni5hc0] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.btn[b-rlkgni5hc0] {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    color: white;
    text-transform: uppercase;
}

.btn:hover[b-rlkgni5hc0] {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.playstation[b-rlkgni5hc0] {
    background-color: #003791;
    box-shadow: 0 3px 5px rgba(0, 55, 145, 0.5);
}

.xbox[b-rlkgni5hc0] {
    background-color: #107c10;
    box-shadow: 0 3px 5px rgba(16, 124, 16, 0.5);
}

.nintendo[b-rlkgni5hc0] {
    background-color: #e60012;
    box-shadow: 0 3px 5px rgba(230, 0, 18, 0.5);
}

.sega[b-rlkgni5hc0] {
    background-color: #0089cf;
    box-shadow: 0 3px 5px rgba(0, 137, 207, 0.5);
}

.atari[b-rlkgni5hc0] {
    background-color: #e52b50;
    box-shadow: 0 3px 5px rgba(229, 43, 80, 0.5);
}

.detail[b-rlkgni5hc0] {
    background-color: #ffffff;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 3px 5px rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.detail:hover[b-rlkgni5hc0] {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 255, 255, 0.4);
}

.game-container[b-rlkgni5hc0] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 95%;
    margin: 0 auto;
}

.game-card[b-rlkgni5hc0] {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid white;
    width: 100%;
}

.game-card-header[b-rlkgni5hc0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.game-card-body[b-rlkgni5hc0] {
    display: flex;
    align-items: flex-start;
}

.game-info[b-rlkgni5hc0] {
    width: 350px;
    padding-right: 15px;
    font-size: 1rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-info h4[b-rlkgni5hc0],
.game-card-header h4[b-rlkgni5hc0] {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.game-card-header h4[b-rlkgni5hc0] {
    flex-shrink: 0;
}

.game-images-row[b-rlkgni5hc0] {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.game-added-date[b-rlkgni5hc0] {
    margin: 0;
    margin-left: auto;
    padding: 0;
    line-height: 1;
    font-size: 0.9rem;
    white-space: nowrap;
}

.game-images[b-rlkgni5hc0] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    align-items: flex-start;
}

.game-images-wrapper[b-rlkgni5hc0] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.game-images img[b-rlkgni5hc0] {
    width: 140px;
    height: 187px;
    border-radius: 5px;
    flex-shrink: 0;
    object-fit: contain;
}

.btn-edit-game[b-rlkgni5hc0] {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #2a4a6a;
    color: white;
    transition: background-color 0.2s;
}

.btn-edit-game:hover[b-rlkgni5hc0] {
    background-color: #3a5a7a;
}

.btn-delete-game[b-rlkgni5hc0] {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #6a2a2a;
    color: white;
    transition: background-color 0.2s;
}

.btn-delete-game:hover[b-rlkgni5hc0] {
    background-color: #8a3a3a;
}

@media screen and (min-width: 1024px) {
    .game-images img[b-rlkgni5hc0] {
        width: 220px;
        height: 293px;
    }
}

.search-box[b-rlkgni5hc0] {
    display: block;
    margin: 0 auto;
    width: 50%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background-color: #1a1a1a;
    color: white;
}

@media screen and (max-width: 768px) {
    .search-box[b-rlkgni5hc0] {
        font-size: 18px;
        padding: 12px;
        width: 90%;
        max-width: none;
    }
}

.social-links[b-rlkgni5hc0] {
    text-align: center;
    margin: 8px 0 16px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.total-games[b-rlkgni5hc0] {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin: 10px auto;
    display: block;
    width: 100%;
}

.ebay-link[b-rlkgni5hc0] {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.ebay-link:hover[b-rlkgni5hc0] {
    text-decoration: underline;
}

.ebay-link:visited[b-rlkgni5hc0] {
    color: #007bff;
}

.price[b-rlkgni5hc0] {
    color: #28a745;
    font-weight: bold;
}

.scroll-to-top[b-rlkgni5hc0] {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.scroll-to-top:hover[b-rlkgni5hc0] {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.scroll-to-top.visible[b-rlkgni5hc0] {
    opacity: 1;
}

.image-modal[b-rlkgni5hc0] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
}

.image-modal img[b-rlkgni5hc0] {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid white;
    border-radius: 8px;
}

.price-toggle-container[b-rlkgni5hc0] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.price-toggle[b-rlkgni5hc0] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.price-toggle input[b-rlkgni5hc0] {
    opacity: 0;
    width: 0;
    height: 0;
}

.price-toggle-slider[b-rlkgni5hc0] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.price-toggle-slider[b-rlkgni5hc0]:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .price-toggle-slider[b-rlkgni5hc0] {
    background-color: #2196F3;
}

input:checked + .price-toggle-slider[b-rlkgni5hc0]:before {
    transform: translateX(26px);
}

.price-toggle-label[b-rlkgni5hc0] {
    color: white;
    font-weight: bold;
}

.code-prompt-container[b-rlkgni5hc0] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background-color: #1a1a1a;
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.code-input[b-rlkgni5hc0] {
    padding: 8px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
}

.btn-verify[b-rlkgni5hc0], .btn-cancel[b-rlkgni5hc0] {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: white;
}

.btn-verify[b-rlkgni5hc0] {
    background-color: #28a745;
}

.btn-verify:hover[b-rlkgni5hc0] {
    background-color: #218838;
}

.btn-cancel[b-rlkgni5hc0] {
    background-color: #dc3545;
}

.btn-cancel:hover[b-rlkgni5hc0] {
    background-color: #c82333;
}
/* /Shared/AuthHeader.razor.rz.scp.css */
.auth-header[b-cgie0m5mjo] {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
}

.auth-header-inner[b-cgie0m5mjo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.auth-header-logo[b-cgie0m5mjo] {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-header-logo:hover[b-cgie0m5mjo] {
    color: #aaa;
}

.auth-header-logo-text[b-cgie0m5mjo] {
    font-size: 1.25rem;
    font-weight: bold;
}

.auth-header-logo-img[b-cgie0m5mjo] {
    height: 72px !important;
    min-height: 72px;
    width: auto;
    max-height: 72px;
    object-fit: contain;
    vertical-align: middle;
}

.auth-header-bar[b-cgie0m5mjo] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-header-discord[b-cgie0m5mjo] {
    color: #5865F2;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
}

.auth-header-discord:hover[b-cgie0m5mjo] {
    color: #7289da;
    text-decoration: underline;
}

.auth-header-user[b-cgie0m5mjo] {
    color: white;
    font-size: 0.95rem;
}

.auth-sep[b-cgie0m5mjo] {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.btn-auth[b-cgie0m5mjo] {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #2a2a2a;
    color: white;
    transition: background-color 0.2s;
}

.btn-auth:hover[b-cgie0m5mjo] {
    background-color: #3a3a3a;
}

.btn-account[b-cgie0m5mjo] {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-account:hover[b-cgie0m5mjo] {
    background-color: #3a3a3a;
}

.btn-logout[b-cgie0m5mjo] {
    background-color: #555;
}

.btn-logout:hover[b-cgie0m5mjo] {
    background-color: #666;
}

/* Modal für Login/Register */
.auth-modal-backdrop[b-cgie0m5mjo] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.auth-modal[b-cgie0m5mjo] {
    max-width: 360px;
    width: 90%;
    padding: 24px;
    background-color: #1a1a1a;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.auth-modal h4[b-cgie0m5mjo] {
    margin: 0 0 16px 0;
    color: white;
    font-size: 1.2rem;
}

.auth-form[b-cgie0m5mjo] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-input[b-cgie0m5mjo] {
    padding: 10px 12px;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: #2a2a2a;
    color: white;
}

.auth-input[b-cgie0m5mjo]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.auth-form-buttons[b-cgie0m5mjo] {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.btn-auth-submit[b-cgie0m5mjo] {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #28a745;
    color: white;
}

.btn-auth-submit:hover[b-cgie0m5mjo] {
    background-color: #218838;
}

.btn-auth-cancel[b-cgie0m5mjo] {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background-color: #555;
    color: white;
}

.btn-auth-cancel:hover[b-cgie0m5mjo] {
    background-color: #666;
}
