.elementor-2365 .elementor-element.elementor-element-32fb981{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-2365 .elementor-element.elementor-element-91c189d{text-align:center;color:#FFFFFF;}.elementor-2365 .elementor-element.elementor-element-0f9e2ee{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-0f9e2ee *//* --- RPG Container --- */
.rpg-container {
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;
    background: #1a1a1a;
    font-family: "Cinzel", serif;
}
.rpg-container2 {
    text-align: center;
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;
    background: #1a1a1a;
    box-shadow: 0 0 18px rgba(233,150,18,0.4);
    color: #f3e6d0;
    font-family: "Cinzel", serif;
}
/* Title */
.rpg-title {
    text-align: center;
    font-size: 32px;
    color: #E99612;
    margin-bottom: 25px;
}

/* Grid */
.rpg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
}

/* Fields */
.rpg-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    color: #E99612;
}

.rpg-field select {
    width: 100%;
    padding: 10px;
    background: #0e0e0e;
    color: #f3e6d0;
    border-radius: 8px;
    border: 2px solid #E99612;
    font-size: 16px;
}

.rpg-field select:disabled {
    opacity: 0.4;
    border-color: #555;
    cursor: not-allowed;
}

/* Button — ORANGE, kein Hover, kein Blau */
.rpg-button {
    margin-top: 25px;
    width: 100%;
    padding: 14px;
    background: #E99612;      /* ORANGE */
    color: #1a1a1a;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
}

/* ❌ KEINE Hover-Farbänderung */
.rpg-button:hover,
.rpg-button:active,
.rpg-button:focus {
    background: #E99612;
    color: #1a1a1a;
    box-shadow: none;
    outline: none;
}

/* RESULT BOX */
/* Der Result-Container selbst */
#result,
.rpg-result {
    width: 100%;
    display: block;
    margin-top: 30px;
}

/* Tabelle IMMER volle Breite */
#result table,
.rpg-result table {
    width: 100%;
    display: table;
    border-collapse: collapse;
        border: 2px solid #E99612;
}


/* --- Kopfzeile: SCHWARZ --- */
.rpg-result th {
    background: #252525;
    color: #000000;
    padding: 10px;
    border: 2px solid #E99612;
    font-weight: bold;
}

/* --- Datenzeilen: SCHWARZ + WEISSE SCHRIFT --- */
.rpg-result td {
    background: #252525;
    color: #ffffff;
    padding: 10px;
    border-bottom: 1px solid #E99612;
}

/* Alternierende Zeilen entfernen (immer schwarz) */
.rpg-result tr:nth-child(even) td,
.rpg-result tr:nth-child(odd) td {
    background: #252525;
    color: #ffffff;
        border: 2px solid #E99612;
}

/* --- KEIN Hover --- */
.rpg-result tr:hover td {
    background: #252525;
    color: #fffffft;
}

/* Responsive */
@media (max-width: 600px) {
    .rpg-container {
        padding: 20px;
    }
    .rpg-title {
        font-size: 26px;
    }
}/* End custom CSS */