/* Grundlegende Stile zurücksetzen, um Browser-Inkonsistenzen zu vermeiden */
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
}

/* Die bildschirmfüllende Karte */
.fullscreen-card {
    width: 100vw;
    /* 100% der Ansichtsfensterbreite */
    height: 100vh;
    /* 100% der Ansichtsfensterhöhe */
    background-color: #ffffff;
    padding: 40px;
    box-sizing: border-box;
    /* Padding wird in die Gesamtgröße eingerechnet */
    overflow-y: auto;
    /* Scrollen ermöglichen, falls die Liste zu lang ist */
}

.card-content{
    background-color: rgba(255, 255, 255, 0.9); 
    border-radius: 15px; 
    padding: 30px;
    width: 75%;
}

.card-content h1{
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 6em;
}


/* Titel der Karte */
.fullscreen-card h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

/* Liste der Artikel */
.item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-collapse: collapse;
    font-family: AbadiMTStd, sans-serif;
    /* max-width: 800px; */
    /* Begrenzt die Breite der Liste für bessere Lesbarkeit */
}

/* Einzelne Listeneinträge */
.item-list tr {
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #333;
}

/* Letztes Element ohne unteren Rand */
.item-list tr:last-child {
    border-bottom: none;
}

.item-list tr td{
    font-size: 2.2em;
}

.card-content p{
    font-size: 2.2em; 
    font-weight: bold; 
    color: #555;
}

/* Styling für den Preis */
.item-price {
    font-weight: bold;
    color: #007bff;
    margin-left: 0px;
    margin-right: auto;
}

/* Styling für die Details */
.item-details {
    margin-left: auto;
    margin-right: 50px;
}

/* Styling für den Namen */
.item-name {
    font-weight: bold;
    color: #333;
    margin-left: auto;
    margin-right: 0px;
}