Menü aufrufen
Persönliches Menü aufrufen
Nicht angemeldet
Ihre IP-Adresse wird öffentlich sichtbar sein, wenn Sie Änderungen vornehmen.
Die ersten drei Belohnungen für Maddraxikaner sind nun mit Aktivitätspunkten freischaltbar!

MediaWiki:Common.css: Unterschied zwischen den Versionen

MediaWiki-Schnittstellenseite
(Test einer Hintergrunddatei)
(CSS-Klassen präzisiert)
 
(207 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/* Hauptseite Layout */
/* Hintergrundbild */
.home-grid {
body{ background: #e1e1e1 url("/images/Space.jpg") 0px 0px no-repeat; }
display: grid;
grid: auto-flow dense/repeat( auto-fit, minmax( 10rem, 1fr ) );
grid-auto-rows: minmax( 3rem, auto );
grid-gap: var( --space-xs );
}
.home-grid--col2 {
grid-template-columns: 1fr 1fr;
}
.home-grid a.external {
background-image: none;
}
.home-card {
position: relative;
padding: var( --space-md );
background: var( --color-surface-1 );
border: 1px solid var( --border-color-base );
border-radius: 8px;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
font-size: 0.875rem;
}
.home-card table.timeline {
margin-top: 0.2rem;
}
.home-card--col2 {
grid-column: span 2;
}
.home-card--row3 {
grid-row: span 3;
}
.home-card--row4 {
grid-row: span 4;
}
.home-card--row8 {
grid-row: span 8 / auto;
}
.home-card__label {
color: var( --color-base--subtle );
font-size: 0.8125rem;
letter-spacing: 0.75px;
}
.home-card__header {
color: var( --color-base--emphasized );
font-size: 1rem;
    font-weight: var( --font-weight-semibold );
    line-height: var( --line-height-xs );
}
.home-card__header a {
display: flex;
align-items: center;
justify-content: space-between;
}
.home-card__header a:after {
content: '▶';
font-size: 0.8125rem;
}
.home-card__background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: #242a31;
border-radius: 8px;
}
.home-card__background:after {
position: absolute;
    pointer-events: none;
top: 0;
bottom: 0;
left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to right,#000,transparent);
    content: "";
}
.home-card__background img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.home-card__foreground {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
padding: var( --space-md );
display: flex;
flex-direction: column;
justify-content: center;
gap: var( --space-xxs );
color: #fff;
line-height: var( --line-height-xs );
pointer-events: none;
}
.home-card__foreground .home-card__header {
color: #fff;
}
.home-card__foreground .home-card__label {
color: #bababa;
}
.home-card p {
margin-top: var( --space-xs );
font-size: 0.875rem;
}
.home-card.home-card--button {
overflow: hidden;
padding: 0;
background: #242a31;
border: 0;
}
.home-card--button a {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
padding: 0 var( --space-md );
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button .home-card__background a {
padding: 0;
}
.home-card--button img {
transition: transform 0.2s ease;
}
.home-card--button:hover img {
transform: scale(1.1);
}
.home-link {
display: grid;
margin-top: var( --space-xs );
font-size: 0.875rem;
font-weight: 500;
grid-gap: var( --space-xs );
text-align: center;
}
.home-link__button {
display: flex;
}
.home-link__button a {
flex-grow: 1;
padding: var( --space-xs );
border: 1px solid var( --border-color-base );
background: var( --color-surface-2 );
border-radius: var( --border-radius--medium );
color: var( --color-base--emphasized ) !important;
    line-height: var( --line-height-xs );
    text-decoration: none !important;
}
.home-link__button a:hover {
background: var( --color-surface-2--hover );
}
.home-link__button a:active {
background: var( --color-surface-2--active );
}
#home-content {
margin-top: var( --space-lg );
}
.home-stats {
flex-grow: 1;
line-height: 1;
}
.home-stats__value {
font-size: 1.5rem;
font-weight: 600;
}
.home-stats__unit {
margin-top: var( --space-xxs );
color: var( --color-base--subtle );
font-size: 0.8125rem;
}
.home-footer {
font-size: 0.8125rem;
font-family: monospace;
text-align: center;
}
 
 
/* Buttons Hauptseite */
#home-nav {
margin-top: 1rem;
}
#home-nav .home-card__foreground {
    font-weight: var( --font-weight-medium );
}
#home-nav .home-card.home-card--button {
height: 5rem;
}
 
/* Hörbuch-Cover */
.hörbuch-cover {
    display: inline-block;
    position: relative;
    margin: 20px 20px 15px 20px;
}
 
.hörbuch-cover::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -25px;
    right: -5px;
    bottom: -3px;
    border-radius: 3px;
    background: rgba(0,0,0,0);
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.6),
                inset 0px 0px 20px 2px rgba(0,0,0,0.4),
                inset 0px 0px 5px 1px rgba(255,255,255,0.6),
                inset 0px 0px 0px 1px rgba(255,255,255,0.2);
    z-index: -1;
}
 
.hörbuch-cover .mw-default-size {
    display: block;
    position: relative;
}
 
.hörbuch-cover .mw-default-size a {
    display: block;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}
 
.hörbuch-cover .mw-default-size img {
    display: block;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5),
                inset 0px 0px 16px 2px rgba(0,0,0,0.1),
                inset 0px 0px 0px 1px rgba(255,255,255,0.3);
}
 
.hörbuch-cover .mw-default-size::before,
.hörbuch-cover .mw-default-size::after,
.hörbuch-cover .mw-default-size a::before,
.hörbuch-cover .mw-default-size a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    box-shadow: inset 0px 0px 6px 1px rgba(0,0,0,0.22),
                inset 0px 0px 1px 1px rgba(255,255,255,0.17);
    z-index: 1;
}
 
.hörbuch-cover .mw-default-size::before {
    top: 0;
    left: 20px;
    border-radius: 0 0 5px 5px;
}
 
.hörbuch-cover .mw-default-size::after {
    top: 0;
    right: 20px;
    border-radius: 0 0 5px 5px;
}
 
.hörbuch-cover .mw-default-size a::before {
    bottom: 0;
    left: 20px;
    border-radius: 5px 5px 0 0;
}
 
.hörbuch-cover .mw-default-size a::after {
    bottom: 0;
    right: 20px;
    border-radius: 5px 5px 0 0;
}
 
.hörbuch-cover::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -25px;
    width: 15px;
    height: 220px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.07) 100%);
    box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.23),
                inset 0px 0px 7px 0px rgba(0,0,0,0.22),
                inset 0px 0px 0px 1px rgba(255,255,255,0.22);
    border-radius: 0 50% 50% 0;
    z-index: -1;
}
 
/* Heftromane */
.heftroman-cover {
    display: inline-block;
    position: relative;
    width: 205px; /* Anpassbare Breite */
    height: 298px; /* Anpassbare Höhe */
    background: #e0e1dc;
    transform-style: preserve-3d;
    perspective: 2000px;
    box-shadow: inset 300px 0 50px rgba(0, 0, 0, .5), 20px 0 60px rgba(0, 0, 0, .5);
    transition: 1s;
    margin: 20px 5px 5px 10px;
}
 
.heftroman-cover:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #BAC1BA;
    transform-origin: bottom;
    transform: skewX(-45deg);
}
 
.heftroman-cover:after {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 5px;
    height: 100%;
    background: #92A29C;
    transform-origin: left;
    transform: skewY(-45deg);
}
 
.heftroman-cover .imgBox {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: left;
    transition: .7s;
}
 
.heftroman-cover .bark {
    position: absolute;
    background: #e0e1dc;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .7s;
}
 
.heftroman-cover img {
    display: block;
    width: 100%;
    height: 100%;
    border: none; /* Entfernen des weißen Rahmens */
    box-shadow: none; /* Entfernen des Schatten um das Bild */
    border-radius: 0; /* Entfernen der abgerundeten Ecken */
    object-fit: cover; /* Sicherstellen, dass das Bild die gesamte Fläche ausfüllt */
}
 
/* Roman-Infoboxen */
/* Infobox Styling */
.infobox-header {
    background-color: var(--color-surface-1);
    border: 1px solid var(--border-color-base);
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
    margin-bottom: var(--space-md);
}
 
.heftartikel-tabelle {
    width: 100%;
    border-collapse: collapse;
}
 
.heftartikel-tabelle th {
    background-color: var(--color-surface-2);
    color: var(--color-base--emphasized);
    font-weight: var(--font-weight-semibold);
    text-align: left;
    padding: var(--space-xs);
}
 
.heftartikel-tabelle td {
    padding: var(--space-xs);
    border-bottom: 1px solid var(--border-color-base);
}
 
.heftartikel-tabelle tr:last-child td {
    border-bottom: none;
}
 
.bild-container {
    text-align: center;
}
 
.bild-inhalt img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius--medium);
}
 
/* Bewertungssystem Styling */
.rating-score {
    margin-bottom: var(--space-xxs);
    display: inline-block;
    padding: var(--space-xxs) var(--space-xs);
    font-size: 1.2em;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius--small);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    color: var(--color-base--emphasized);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}


/* Hauptseite */
.voteboxrate::before {
.Hauptseite-Box {
    content: '';
  box-shadow: 0.4em 0.4em 0.4em rgba(0,0,0,0.25);
    position: absolute;
  -moz-box-shadow: 0.4em 0.4em 0.4em rgba(0,0,0,0.25);
    top: 0;
  -webkit-box-shadow: 0.4em 0.4em 0.4em rgba(0,0,0,0.25);
    left: 0;
}
    right: 0;
.Hauptseite-Box h2 {
    bottom: 0;
  border: 1px solid #AAAAAA;
    background: inherit;
  background-color: #d8e8ff;
    filter: blur(10px);
  padding: 0.2em 0;
    opacity: 0.3;
  margin: 0 !important;
    z-index: -1;
  font-size: 110%;
}
  font-weight: bold;
  text-indent: 0.5em;
}
.Hauptseite-Inhalt {
  border: 1px solid #AAAAAA;
  border-top: 0px solid #FFFFFF;
  background-color: #F7F8FF;
  margin-bottom: 1em;
  padding: 0.2em 0.8em 0.2em 0.8em;
}


/* +++++ Standardtabelle für Auflistung +++++ */
.rating-low {
    color: red;
}
.rating-medium-low {
    color: orange;
}
.rating-medium {
    color: yellow;
}
.rating-medium-high {
    color: lightgreen;
}
.rating-high {
    color: green;
}


table.maddraxikon_std_table {
/* Hervorhebung für wichtige Informationen */
        border: 1px solid #FFDEAD;
.infobox-row {
        border-collapse: collapse;
    background-color: var(--color-surface-2--hover);
        background-color: #FFF;
}
        width: 100%;
}
table.maddraxikon_std_table tr {
        border: 1px solid #FFDEAD;
        border-collapse: collapse;
}


table.maddraxikon_std_table th {
/* Responsive Design */
         border: 1px solid #FFDEAD;
@media (max-width: 768px) {
         border-collapse: collapse;
    .heftartikel-tabelle, .heftartikel-tabelle tbody, .heftartikel-tabelle tr, .heftartikel-tabelle td {
         padding: 2px 4px;
        display: block;
    }
   
    .heftartikel-tabelle td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
   
    .heftartikel-tabelle td:before {
         content: attr(data-label);
        position: absolute;
         left: var(--space-xs);
        width: 45%;
         padding-right: var(--space-xs);
        white-space: nowrap;
         text-align: left;
         text-align: left;
         background-color: #FFDEAD;
         font-weight: var(--font-weight-semibold);
}
    }
}
 
/* Heftnummern-Navigation */
.heftartikel-navigationsleiste-anfang {
    background-color: #1e2124; /* Dunkler Hintergrund */
    color: #ffffff; /* Weiße Schrift */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}
 
.heftartikel-titel {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
 
.heftartikel-titel a {
    color: #ffffff;
    text-decoration: none;
}
 
/* Zyklus-Navigation */
.heftartikel-navigationsleiste-anfang > div:nth-child(3) {
    text-align: center;
    margin: 10px 0;
}
 
.heftartikel-navigationsleiste-anfang > div:nth-child(3) a {
    color: #6c8cd5; /* Hellblau für Links */
}
 
/* Heftnummern-Navigation */
.heftartikel-navigationsleiste-anfang > a,
.heftartikel-navigationsleiste-anfang > b {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    text-align: center;
}
 
 
.heftartikel-navigationsleiste-anfang > a:hover {
    background-color: #3a3f45; /* Etwas hellerer Hintergrund beim Hover */
}
 
.heftartikel-navigationsleiste-anfang > b {
    background-color: #4b6bab; /* Blauer Hintergrund für aktuelle Seite */
}
 
.nav-zahlen {
  text-align: center;
}


table.maddraxikon_std_table td {  
/* Tabellen */
        border: 1px solid #FFDEAD;
.wikitable .smwtype_num,
        border-collapse: collapse;
.wikitable .smwtype_qty {
        padding: 2px 4px;
    text-align: right;
        text-align: left;
}
        vertical-align: center;
 
}
.flex-wrapper {
display: flex;
overflow-x: auto;
}


/* +++++ Standardtabelle Für Tabelle mit rechter Ausrichtung      +++++ */
body.skin-citizen .wikitable thead {
/* +++++ Angabe erfolgt so: class = "maddraxikon_std_table right" +++++ */
    background-color: var(--color-surface-2);
table.right {
}
        float: right;
        margin: 5px 0px 5px 15px;
}


/* +++++ Standardtabelle Für Tabelle mit mitte Ausrichtung      +++++ */
body.skin-citizen .wikitable tr:nth-child(even) {
/* +++++ Angabe erfolgt so: class = "maddraxikon_std_table center" +++++ */
    background-color: var( --color-surface-1 );
table.center {
}
        margin-left: auto;
        margin-right: auto;
}


/* +++++ Rechter Div-Block der jeden anderen Inhalt verdrängt    +++++ */
body.skin-citizen .wikitable tr:nth-child(even):hover {
/* +++++ Angabe erfolgt so: class = "maddraxikon_std_rframe"      +++++ */
background-color: var(--color-surface-2--hover);
div.maddraxikon_std_rframe {
}
        border: 1px solid;
        border-color: white;
        border-width: 0 0 0 1.4em;
        background-color: #fff;
        clear: right;
        float: right;  
}


/* +++++ Div-Block-Breite für Überblicktabellen                      +++++ */
/* Portal Geschichte */
/* +++++ Angabe erfolgt so: class = "maddraxikon_std_rframe overview"  +++++ */
.portal-geschichte {
div.overview {
    font-family: var(--font-family-base);
        width: 60%;
    max-width: 1200px;
}
    margin: 0 auto;
    padding: var(--space-md);
    background-color: var(--color-surface-1);
    border-radius: var(--border-radius--large);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
}


/* +++++ Div-Block-Breite für Überblicktabellen                      +++++ */
/* Überschriften */
/* +++++ Angabe erfolgt so: class = "maddraxikon_std_rframe astrodata" +++++ */
.portal-geschichte h2 {
div.astrodata {
    color: var(--color-base--emphasized);
        width: 40%;
    border-bottom: 2px solid var(--border-color-base);
}
    padding-bottom: var(--space-xs);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
}


/* +++++ Hintergrundfarbe für Weltraumbilder                          +++++ */
.portal-geschichte h4 {
/* +++++ Angabe erfolgt so: class = "astrodata_bg"                    +++++ */
    color: var(--color-base);
.astrodata_bg {
    margin-top: var(--space-md);
        background-color: #000;
    font-size: 1.2rem;
}
    font-weight: var(--font-weight-medium);
}


/* +++++ SONSTIGE ANPASSUNGEN (Spezialseiten u. a.) +++++ */
/* Navigationstabellen */
.portal-geschichte-navigation table,
/* +++++ Markierung von Redirects in [[Special:Allpages]], [[Special:Watchlist]], Kategorien +++++ */
.portal-geschichte-monate table,
.portal-geschichte-jahre table {
.allpagesredirect {
    width: 100%;
        font-style: italic;
    border-collapse: collapse;
}
    margin-bottom: var(--space-md);
}
.watchlistredir {
        font-style: italic;
}
.redirect-in-category {
        font-style: italic;
}


div.BoxenVerschmelzen,
.portal-geschichte-navigation td,
div.NavFrame {
.portal-geschichte-monate td,
    margin:  0px;
.portal-geschichte-jahre td {
     padding: 0px;
     padding: var(--space-xs);
    border: 1px solid #FFDEAD;
    background-color: #FFDEAD;
     text-align: center;
     text-align: center;
     border-collapse: collapse;
     border: 1px solid var(--border-color-base);
    font-size: 95%;
}
    clear:both;
 
}
/* Links */
div.BoxenVerschmelzen div.NavFrame {
.portal-geschichte a {
    border-style: none;
     color: var(--color-link);
    border-style: hidden;
     text-decoration: none;
}
     transition: color 0.3s;
div.NavFrame + div.NavFrame {
}
     border-top-style: none;
 
    border-top-style: hidden;
.portal-geschichte a:hover {
}
     color: var(--color-link--hover);
div.NavPic {
     text-decoration: underline;
    background-color: #FFDEAD;
}
     margin: 0px;
    padding: 0px;
    float: left;
}
div.NavFrame div.NavHead {
    font-weight: bold;
     font-size: 100%;
    background-color: #FFDEAD;
}
div.NavFrame p {
    font-size: 100%;
}
div.NavFrame div.NavContent {
    font-size: 100%;
}
div.NavFrame div.NavContent p {
    font-size: 100%;
}
div.NavEnd {
     margin: 0px;
    padding: 0px;
    line-height: 1px;
    clear: both;
}
/* Stylesheet fuer den 'Ausklappen'-Button an Navileisten, der in [[MediaWiki:Common.js]] implementiert wird */
.NavToggle {
    font-size: x-small;
    float:right;
}
/* Workaround für Internet Explorer 6 */
div.NavFrame, div.NavPic, .NavToggle {
     position:relative;
}
/* Abstand vor Navigationsleisten */
div.BoxenVerschmelzen,
div.NavFrame {
  margin-top: 1.5em;
}
div.BoxenVerschmelzen div.NavFrame {
  margin-top: 0;
}
div.NavFrame + div.NavFrame {
  margin-top: 0;
}


/* Triff die Community */
/* Spezielle Formatierungen */
.random-users-avatars {
.portal-geschichte b {
        padding: 0px 0px 0px 10px;
    font-weight: var(--font-weight-bold);
}
}
 
.random-users-avatars h2 {
.portal-geschichte .new {
        border-bottom: none;
    color: var(--color-destructive);
        margin: 0px 0px 0px 0px;
        padding: 7px 0px 8px 0px;
}
}
 
.random-users-avatars img {
/* Responsive Design */
        border: 1px solid #DCDCDC;
@media (max-width: 768px) {
    .portal-geschichte-navigation td,
    .portal-geschichte-monate td,
    .portal-geschichte-jahre td {
         display: block;
         display: block;
         float: left;
         width: 100%;
        height: 50px;
    }
        margin: 0px 8px 8px 0px;
}
        width: 50px;
 
/* Zusätzliche Verschönerungen */
.portal-geschichte-navigation,
.portal-geschichte-monate,
.portal-geschichte-jahre {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    border-radius: var(--border-radius--medium);
    overflow: hidden;
}
}


/* Zeitleiste */
.portal-geschichte-navigation th,
table.tl_table{
.portal-geschichte-monate th {
        border-width: thin;
    background-color: var(--color-surface-2--hover);
        border-spacing: 2px;
    font-weight: var(--font-weight-semibold);
        border-style: outset;
}
        border-color: black;
 
        border-collapse: separate;
.portal-geschichte-jahre td {
        background-color: white;
    vertical-align: top;
        -moz-border-radius: 9px; }
}
    th.tl_title{
 
        text-transform: uppercase
/* Hervorhebung für Haupthandlungszeitraum */
        text-align: center;
.portal-geschichte-jahre b a {
        border-width: 1px;
    color: var(--color-accent);
        padding: 1px;
    font-weight: var(--font-weight-bold);
        border-style: outset;
}
        border-color: blue;
 
        background-color: rgb(243, 248, 252);
/* Portal Religion */
        -moz-border-radius: 9px; }
/* Portal Religion */
  th.tl_years{
.portal-religion {
        text-align: center;
    font-family: var(--font-family-base);
        font-style: italic;
    max-width: 1200px;
        border-width: 1px;
    margin: 0 auto;
        padding: 1px;
    padding: var(--space-md);
        border-style: outset;
    background-color: var(--color-surface-1);
        border-color: blue;
    border-radius: var(--border-radius--large);
        background-color: rgb(223, 228, 252);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
        -moz-border-radius: 4px; }
}
  th.tl_months{
 
        text-align: center;
/* Überschriften */
        border-width: 1px;
.portal-religion h1, .portal-religion h2, .portal-religion h3, .portal-religion h4 {
        padding: 1px;
    color: var(--color-base--emphasized);
        border-style: outset;
    border-bottom: 2px solid var(--border-color-base);
        border-color: blue;
    padding-bottom: var(--space-xs);
        background-color: rgb(243, 248, 252);
    margin-top: var(--space-md);
        -moz-border-radius: 2px; }
    font-weight: var(--font-weight-semibold);
  th.tl_days{
}
        text-align: center;
 
        border-width: 1px;
.portal-religion h1 { font-size: 1.8rem; }
        padding: 1px;
.portal-religion h2 { font-size: 1.5rem; }
        border-style: outset;
.portal-religion h3 { font-size: 1.3rem; }
        border-color: blue;
.portal-religion h4 { font-size: 1.1rem; }
        background-color: rgb(243, 248, 252);
 
        -moz-border-radius: 2px; }
/* Tabelle */
  td.tl_freetime{
.portal-religion table {
        background-color: rgb(187, 210, 236);
    width: 100%;
        border-width: 1px;
    border-collapse: collapse;
        border-color: black;
    margin-bottom: var(--space-md);
        border-style: inset;
}
        -moz-border-radius: 7px; }
  td.tl_event{
        text-align: center;
        padding: 1px;
        background-color: rgb(61, 114, 194);
        border-width: 1px;
        border-color: white;
        border-style: inset;
        color: white;
        -moz-border-radius: 7px;
        white-space: normal }
  td.tl_foot{
        text-align: center;
        padding: 1px;
        background-color: rgb(243, 248, 252);
        border-width: 1px;
        border-color: blue;
        border-style: ridge;
        color: gray;
        -moz-border-radius: 9px; }
thead.tl_header{}
tbody.tl_body{}
tfoot.tl_footer{}


/* Schnellüberblicksfeld Hauptseite */
.portal-religion td {
.mp-welcome-logged-in {
    padding: var(--space-xs);
        margin: 0px 0px 0px 15px;
    border: 1px solid var(--border-color-base);
    vertical-align: top;
}
}
 
.mp-welcome-logged-in h2 {
/* Links */
        font-size: 20px;
.portal-religion a {
        line-height: 24px;
    color: var(--color-link);
        border-bottom: none;
    text-decoration: none;
        padding: 8px 0px 10px 0px !important;
    transition: color 0.3s;
        margin: 0px 0px 0px 0px !important;
}
}
 
.mp-welcome-info {
.portal-religion a:hover {
        float: left;
    color: var(--color-link--hover);
        width: 240px;
    text-decoration: underline;
}
}
 
.mp-welcome-image {
/* Listen */
        float: left;
.portal-religion ul {
        margin: 0px 10px 0px 0px;
    padding-left: var(--space-md);
        text-align: center;
    margin: var(--space-xs) 0;
}
}
 
.mp-welcome-image a {
.portal-religion li {
        font-size: 10px;
    margin-bottom: var(--space-xxs);
        text-decoration: none;
}
}
 
.mp-welcome-image img {
/* Spezielle Formatierungen */
        background-color: #FFFFFF;
.portal-religion .new {
        border: 1px solid #DCDCDC;
    color: var(--color-destructive);
        padding: 3px;
}
}
 
.mp-welcome-points {
/* Responsive Design */
         float: left;
@media (max-width: 768px) {
         width: 200px;
    .portal-religion table, .portal-religion tbody, .portal-religion tr, .portal-religion td {
         display: block;
         width: 100%;
    }
   
    .portal-religion td {
        margin-bottom: var(--space-sm);
    }
}
}
 
.points-and-level {
/* Zusätzliche Verschönerungen */
        margin: 0px 0px 3px;
.portal-religion {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    border-radius: var(--border-radius--medium);
    overflow: hidden;
}
}
 
.needed-points {
/* Abschnitte */
        color: #666666;
.portal-religion > tbody > tr:nth-child(odd) {
        font-size: 10px;
    background-color: var(--color-surface-1);
        line-height: 12px;
        padding: 5px 0px 0px;
}
}
 
.total-points {
.portal-religion > tbody > tr:nth-child(even) {
        background-color: #CC0000;
    background-color: var(--color-surface-2);
        color: #FFFFFF;
        float: left;
        font-size: 12px;
        font-weight: bold;
        margin: 0px 5px 0px 0px;
        padding: 1px 5px;
        text-align: center;
}
}
 
.honorific-level {
/* Hervorhebungen */
        float: left;
.portal-religion b, .portal-religion strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}
}


/*** font class für 'hellklick' in Balkennavigation ***/
/* Infobox Styling */
.mw-parser-output > .infobox {
.hellklick a, .hellklick a:visited {
    float: right;
    text-decoration: underline; color: #fefefe !important;
    clear: right;
    width: 300px;
    margin: 0 0 1em 1em;
    background-color: var(--color-surface-2);
    border: 1px solid var(--border-color-base);
    border-radius: var(--border-radius--medium);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    line-height: 1.3;
}
}
.hellklick a:hover, .hellklick a:active {
 
    color: #9ad9ff !important;
.mw-parser-output > .infobox > tbody > tr > th {
    vertical-align: top;
    padding: 0.4em 0.6em;
    background-color: var(--color-surface-2--hover);
    border-bottom: 1px solid var(--border-color-base);
}
}
 
/*** font class für 'hellklick2' in Tutorial ***/
.mw-parser-output > .infobox > tbody > tr > td {
    vertical-align: top;
.hellklick2 a, .hellklick2 a:visited {
    padding: 0.4em 0.6em;
    text-decoration: none; color: #fefefe !important;
    border-bottom: 1px solid var(--border-color-base);
}
}
.hellklick2 a:hover, .hellklick2 a:active {  
 
    color: #9ad9ff !important; text-decoration: underline;
.mw-parser-output > .infobox > tbody > tr:last-child > td {
    border-bottom: none;
}
}
 
.whitelink a {
.mw-parser-output > .infobox img {
color: white !important;
    max-width: 100%;
text-decoration: none;
    height: auto;
    display: block;
    margin: 0 auto;
}
}
 
.whitelink a:hover {
/* Artikel-Text Styling */
color: white !important;
.mw-body-content {
    overflow: hidden; /* Verhindert, dass der Text unter die Infobox fließt */
}
}
 
.yellowlink a {
/* Responsive Design */
color: yellow !important;
@media (max-width: 768px) {
text-decoration: none;
    .mw-parser-output > .infobox {
        float: none;
        width: 100%;
        margin: 1em 0;
    }
}
}
 
.yellowlink a:hover {
/* Spezifisches Styling für die Infobox-Header */
color: yellow !important;
.mw-parser-output > .infobox > tbody > tr:first-child > th {
    background-color: var(--color-surface-3);
    color: var(--color-base--emphasized);
    font-weight: bold;
    padding: 0.5em;
    text-align: center;
    border-bottom: 1px solid var(--border-color-base);
}
}
/* Ausklappen per Mausklick (s.a. [[MediaWiki:Common.js]]  */
.klapp {
      cursor: pointer;
}
span.klapp {
      text-decoration: none;
      color: #002bb8;
      background: none;
      }
span.klapp:hover {
      text-decoration: underline;
      }
/* Drag & Drop */
.jstest{
      position:relative;
      cursor:move;
      z-index: 100;
      padding:20px 45px 20px 0px;
      border-width:1px;
      }

Aktuelle Version vom 8. September 2024, 17:20 Uhr

/* Hauptseite Layout */
.home-grid {
	display: grid;
	grid: auto-flow dense/repeat( auto-fit, minmax( 10rem, 1fr ) );
	grid-auto-rows: minmax( 3rem, auto );
	grid-gap: var( --space-xs );
}
.home-grid--col2 {
	grid-template-columns: 1fr 1fr;
}
.home-grid a.external {
	background-image: none;
}
.home-card {
	position: relative;
	padding: var( --space-md );
	background: var( --color-surface-1 );
	border: 1px solid var( --border-color-base );
	border-radius: 8px;
	box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
	font-size: 0.875rem;
}
.home-card table.timeline {
	margin-top: 0.2rem;
}
.home-card--col2 {
	grid-column: span 2;
}
.home-card--row3 {
	grid-row: span 3;
}
.home-card--row4 {
	grid-row: span 4;
}
.home-card--row8 {
	grid-row: span 8 / auto;
}
.home-card__label {
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
	letter-spacing: 0.75px;
}
.home-card__header {
	color: var( --color-base--emphasized );
	font-size: 1rem;
    font-weight: var( --font-weight-semibold );
    line-height: var( --line-height-xs );
}
.home-card__header a {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.home-card__header a:after {
	content: '▶';
	font-size: 0.8125rem;
}
.home-card__background {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #242a31;
	border-radius: 8px;
}
.home-card__background:after {
	position: absolute;
    pointer-events: none;
	top: 0;
	bottom: 0;
	left: 0;
    right: 0;
    display: block;
    background: linear-gradient(to right,#000,transparent);
    content: "";
}
.home-card__background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.home-card__foreground {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: var( --space-md );
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var( --space-xxs );
	color: #fff;
	line-height: var( --line-height-xs );
	pointer-events: none;
}
.home-card__foreground .home-card__header {
	color: #fff;
}
.home-card__foreground .home-card__label {
	color: #bababa;
}
.home-card p {
	margin-top: var( --space-xs );
	font-size: 0.875rem;
}
.home-card.home-card--button {
	overflow: hidden;
	padding: 0;
	background: #242a31;
	border: 0;
}
.home-card--button a {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 0 var( --space-md );
	background: transparent;
	color: #fff;
	font-weight: 500;
}
.home-card--button .home-card__background a {
	padding: 0;
}
.home-card--button img {
	transition: transform 0.2s ease;
}
.home-card--button:hover img {
	transform: scale(1.1);
}
.home-link {
	display: grid;
	margin-top: var( --space-xs );
	font-size: 0.875rem;
	font-weight: 500;
	grid-gap: var( --space-xs );
	text-align: center;
}
.home-link__button {
	display: flex;
}
.home-link__button a {
	flex-grow: 1;
	padding: var( --space-xs );
	border: 1px solid var( --border-color-base );
	background: var( --color-surface-2 );
	border-radius: var( --border-radius--medium );
	color: var( --color-base--emphasized ) !important;
    line-height: var( --line-height-xs );
    text-decoration: none !important;
}
.home-link__button a:hover {
	background: var( --color-surface-2--hover );
}
.home-link__button a:active {
	background: var( --color-surface-2--active );
}
#home-content {
	margin-top: var( --space-lg );
}
.home-stats {
	flex-grow: 1;
	line-height: 1;
}
.home-stats__value {
	font-size: 1.5rem;
	font-weight: 600;
}
.home-stats__unit {
	margin-top: var( --space-xxs );
	color: var( --color-base--subtle );
	font-size: 0.8125rem;
}
.home-footer {
	font-size: 0.8125rem;
	font-family: monospace;
	text-align: center;
}


/* Buttons Hauptseite */
#home-nav {
	margin-top: 1rem;
}
#home-nav .home-card__foreground {
    font-weight: var( --font-weight-medium );
}
#home-nav .home-card.home-card--button {
	height: 5rem;
}

/* Hörbuch-Cover */
.hörbuch-cover {
    display: inline-block;
    position: relative;
    margin: 20px 20px 15px 20px;
}

.hörbuch-cover::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -25px;
    right: -5px;
    bottom: -3px;
    border-radius: 3px;
    background: rgba(0,0,0,0);
    box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.6), 
                inset 0px 0px 20px 2px rgba(0,0,0,0.4), 
                inset 0px 0px 5px 1px rgba(255,255,255,0.6), 
                inset 0px 0px 0px 1px rgba(255,255,255,0.2);
    z-index: -1;
}

.hörbuch-cover .mw-default-size {
    display: block;
    position: relative;
}

.hörbuch-cover .mw-default-size a {
    display: block;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.hörbuch-cover .mw-default-size img {
    display: block;
    box-shadow: 0px 0px 5px 1px rgba(0,0,0,0.5),
                inset 0px 0px 16px 2px rgba(0,0,0,0.1), 
                inset 0px 0px 0px 1px rgba(255,255,255,0.3);
}

.hörbuch-cover .mw-default-size::before,
.hörbuch-cover .mw-default-size::after,
.hörbuch-cover .mw-default-size a::before,
.hörbuch-cover .mw-default-size a::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 10px;
    background: rgba(255,255,255,0.15);
    box-shadow: inset 0px 0px 6px 1px rgba(0,0,0,0.22), 
                inset 0px 0px 1px 1px rgba(255,255,255,0.17);
    z-index: 1;
}

.hörbuch-cover .mw-default-size::before {
    top: 0;
    left: 20px;
    border-radius: 0 0 5px 5px;
}

.hörbuch-cover .mw-default-size::after {
    top: 0;
    right: 20px;
    border-radius: 0 0 5px 5px;
}

.hörbuch-cover .mw-default-size a::before {
    bottom: 0;
    left: 20px;
    border-radius: 5px 5px 0 0;
}

.hörbuch-cover .mw-default-size a::after {
    bottom: 0;
    right: 20px;
    border-radius: 5px 5px 0 0;
}

.hörbuch-cover::after {
    content: '';
    position: absolute;
    top: 40px;
    left: -25px;
    width: 15px;
    height: 220px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.07) 100%);
    box-shadow: 3px 0px 5px 0px rgba(0,0,0,0.23), 
                inset 0px 0px 7px 0px rgba(0,0,0,0.22), 
                inset 0px 0px 0px 1px rgba(255,255,255,0.22);
    border-radius: 0 50% 50% 0;
    z-index: -1;
}

/* Heftromane */
.heftroman-cover {
    display: inline-block;
    position: relative;
    width: 205px; /* Anpassbare Breite */
    height: 298px; /* Anpassbare Höhe */
    background: #e0e1dc;
    transform-style: preserve-3d;
    perspective: 2000px;
    box-shadow: inset 300px 0 50px rgba(0, 0, 0, .5), 20px 0 60px rgba(0, 0, 0, .5);
    transition: 1s;
    margin: 20px 5px 5px 10px;
}

.heftroman-cover:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: #BAC1BA;
    transform-origin: bottom;
    transform: skewX(-45deg);
}

.heftroman-cover:after {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 5px;
    height: 100%;
    background: #92A29C;
    transform-origin: left;
    transform: skewY(-45deg);
}

.heftroman-cover .imgBox {
    width: 100%;
    height: 100%;
    position: relative;
    transform-origin: left;
    transition: .7s;
}

.heftroman-cover .bark {
    position: absolute;
    background: #e0e1dc;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .7s;
}

.heftroman-cover img {
    display: block;
    width: 100%;
    height: 100%;
    border: none; /* Entfernen des weißen Rahmens */
    box-shadow: none; /* Entfernen des Schatten um das Bild */
    border-radius: 0; /* Entfernen der abgerundeten Ecken */
    object-fit: cover; /* Sicherstellen, dass das Bild die gesamte Fläche ausfüllt */
}

/* Roman-Infoboxen */
/* Infobox Styling */
.infobox-header {
    background-color: var(--color-surface-1);
    border: 1px solid var(--border-color-base);
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
    margin-bottom: var(--space-md);
}

.heftartikel-tabelle {
    width: 100%;
    border-collapse: collapse;
}

.heftartikel-tabelle th {
    background-color: var(--color-surface-2);
    color: var(--color-base--emphasized);
    font-weight: var(--font-weight-semibold);
    text-align: left;
    padding: var(--space-xs);
}

.heftartikel-tabelle td {
    padding: var(--space-xs);
    border-bottom: 1px solid var(--border-color-base);
}

.heftartikel-tabelle tr:last-child td {
    border-bottom: none;
}

.bild-container {
    text-align: center;
}

.bild-inhalt img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius--medium);
}

/* Bewertungssystem Styling */
.rating-score {
    margin-bottom: var(--space-xxs);
    display: inline-block;
    padding: var(--space-xxs) var(--space-xs);
    font-size: 1.2em;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius--small);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    color: var(--color-base--emphasized);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.voteboxrate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(10px);
    opacity: 0.3;
    z-index: -1;
}

.rating-low {
    color: red;
}
.rating-medium-low {
    color: orange;
}
.rating-medium {
    color: yellow;
}
.rating-medium-high {
    color: lightgreen;
}
.rating-high {
    color: green;
}

/* Hervorhebung für wichtige Informationen */
.infobox-row {
    background-color: var(--color-surface-2--hover);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heftartikel-tabelle, .heftartikel-tabelle tbody, .heftartikel-tabelle tr, .heftartikel-tabelle td {
        display: block;
    }
    
    .heftartikel-tabelle td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    
    .heftartikel-tabelle td:before {
        content: attr(data-label);
        position: absolute;
        left: var(--space-xs);
        width: 45%;
        padding-right: var(--space-xs);
        white-space: nowrap;
        text-align: left;
        font-weight: var(--font-weight-semibold);
    }
}

/* Heftnummern-Navigation */
.heftartikel-navigationsleiste-anfang {
    background-color: #1e2124; /* Dunkler Hintergrund */
    color: #ffffff; /* Weiße Schrift */
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.heftartikel-titel {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.heftartikel-titel a {
    color: #ffffff;
    text-decoration: none;
}

/* Zyklus-Navigation */
.heftartikel-navigationsleiste-anfang > div:nth-child(3) {
    text-align: center;
    margin: 10px 0;
}

.heftartikel-navigationsleiste-anfang > div:nth-child(3) a {
    color: #6c8cd5; /* Hellblau für Links */
}

/* Heftnummern-Navigation */
.heftartikel-navigationsleiste-anfang > a,
.heftartikel-navigationsleiste-anfang > b {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    text-align: center;
}


.heftartikel-navigationsleiste-anfang > a:hover {
    background-color: #3a3f45; /* Etwas hellerer Hintergrund beim Hover */
}

.heftartikel-navigationsleiste-anfang > b {
    background-color: #4b6bab; /* Blauer Hintergrund für aktuelle Seite */
}

.nav-zahlen {
  text-align: center;
}

/* Tabellen */
.wikitable .smwtype_num,
.wikitable .smwtype_qty {
    text-align: right;
}

.flex-wrapper {
	display: flex;
	overflow-x: auto;
}

body.skin-citizen .wikitable thead {
    background-color: var(--color-surface-2);
}

body.skin-citizen .wikitable tr:nth-child(even) {
    background-color: var( --color-surface-1 );
}

body.skin-citizen .wikitable tr:nth-child(even):hover {
	background-color: var(--color-surface-2--hover);
}

/* Portal Geschichte */
.portal-geschichte {
    font-family: var(--font-family-base);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
    background-color: var(--color-surface-1);
    border-radius: var(--border-radius--large);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
}

/* Überschriften */
.portal-geschichte h2 {
    color: var(--color-base--emphasized);
    border-bottom: 2px solid var(--border-color-base);
    padding-bottom: var(--space-xs);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
}

.portal-geschichte h4 {
    color: var(--color-base);
    margin-top: var(--space-md);
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
}

/* Navigationstabellen */
.portal-geschichte-navigation table,
.portal-geschichte-monate table,
.portal-geschichte-jahre table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-md);
}

.portal-geschichte-navigation td,
.portal-geschichte-monate td,
.portal-geschichte-jahre td {
    padding: var(--space-xs);
    text-align: center;
    border: 1px solid var(--border-color-base);
}

/* Links */
.portal-geschichte a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.3s;
}

.portal-geschichte a:hover {
    color: var(--color-link--hover);
    text-decoration: underline;
}

/* Spezielle Formatierungen */
.portal-geschichte b {
    font-weight: var(--font-weight-bold);
}

.portal-geschichte .new {
    color: var(--color-destructive);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portal-geschichte-navigation td,
    .portal-geschichte-monate td,
    .portal-geschichte-jahre td {
        display: block;
        width: 100%;
    }
}

/* Zusätzliche Verschönerungen */
.portal-geschichte-navigation,
.portal-geschichte-monate,
.portal-geschichte-jahre {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    border-radius: var(--border-radius--medium);
    overflow: hidden;
}

.portal-geschichte-navigation th,
.portal-geschichte-monate th {
    background-color: var(--color-surface-2--hover);
    font-weight: var(--font-weight-semibold);
}

.portal-geschichte-jahre td {
    vertical-align: top;
}

/* Hervorhebung für Haupthandlungszeitraum */
.portal-geschichte-jahre b a {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

/* Portal Religion */
/* Portal Religion */
.portal-religion {
    font-family: var(--font-family-base);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-md);
    background-color: var(--color-surface-1);
    border-radius: var(--border-radius--large);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04), 0 3px 6px rgba(0, 0, 0, 0.0575);
}

/* Überschriften */
.portal-religion h1, .portal-religion h2, .portal-religion h3, .portal-religion h4 {
    color: var(--color-base--emphasized);
    border-bottom: 2px solid var(--border-color-base);
    padding-bottom: var(--space-xs);
    margin-top: var(--space-md);
    font-weight: var(--font-weight-semibold);
}

.portal-religion h1 { font-size: 1.8rem; }
.portal-religion h2 { font-size: 1.5rem; }
.portal-religion h3 { font-size: 1.3rem; }
.portal-religion h4 { font-size: 1.1rem; }

/* Tabelle */
.portal-religion table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-md);
}

.portal-religion td {
    padding: var(--space-xs);
    border: 1px solid var(--border-color-base);
    vertical-align: top;
}

/* Links */
.portal-religion a {
    color: var(--color-link);
    text-decoration: none;
    transition: color 0.3s;
}

.portal-religion a:hover {
    color: var(--color-link--hover);
    text-decoration: underline;
}

/* Listen */
.portal-religion ul {
    padding-left: var(--space-md);
    margin: var(--space-xs) 0;
}

.portal-religion li {
    margin-bottom: var(--space-xxs);
}

/* Spezielle Formatierungen */
.portal-religion .new {
    color: var(--color-destructive);
}

/* Responsive Design */
@media (max-width: 768px) {
    .portal-religion table, .portal-religion tbody, .portal-religion tr, .portal-religion td {
        display: block;
        width: 100%;
    }
    
    .portal-religion td {
        margin-bottom: var(--space-sm);
    }
}

/* Zusätzliche Verschönerungen */
.portal-religion {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--color-surface-2);
    border-radius: var(--border-radius--medium);
    overflow: hidden;
}

/* Abschnitte */
.portal-religion > tbody > tr:nth-child(odd) {
    background-color: var(--color-surface-1);
}

.portal-religion > tbody > tr:nth-child(even) {
    background-color: var(--color-surface-2);
}

/* Hervorhebungen */
.portal-religion b, .portal-religion strong {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
}

/* Infobox Styling */
.mw-parser-output > .infobox {
    float: right;
    clear: right;
    width: 300px;
    margin: 0 0 1em 1em;
    background-color: var(--color-surface-2);
    border: 1px solid var(--border-color-base);
    border-radius: var(--border-radius--medium);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.9em;
    line-height: 1.3;
}

.mw-parser-output > .infobox > tbody > tr > th {
    vertical-align: top;
    padding: 0.4em 0.6em;
    background-color: var(--color-surface-2--hover);
    border-bottom: 1px solid var(--border-color-base);
}

.mw-parser-output > .infobox > tbody > tr > td {
    vertical-align: top;
    padding: 0.4em 0.6em;
    border-bottom: 1px solid var(--border-color-base);
}

.mw-parser-output > .infobox > tbody > tr:last-child > td {
    border-bottom: none;
}

.mw-parser-output > .infobox img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Artikel-Text Styling */
.mw-body-content {
    overflow: hidden; /* Verhindert, dass der Text unter die Infobox fließt */
}

/* Responsive Design */
@media (max-width: 768px) {
    .mw-parser-output > .infobox {
        float: none;
        width: 100%;
        margin: 1em 0;
    }
}

/* Spezifisches Styling für die Infobox-Header */
.mw-parser-output > .infobox > tbody > tr:first-child > th {
    background-color: var(--color-surface-3);
    color: var(--color-base--emphasized);
    font-weight: bold;
    padding: 0.5em;
    text-align: center;
    border-bottom: 1px solid var(--border-color-base);
}