/* CSS für den Armbrust-Rechner */
.armbrust-rechner-wrapper .container { /* CSS-Regeln unter dem Wrapper Scopen */
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
    margin: 20px auto; /* Zentrierung und Abstand */
    box-sizing: border-box;
}

.armbrust-rechner-wrapper h1 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.armbrust-rechner-wrapper .hinweis {
    font-size: 0.9em;
    color: #666;
    background-color: #eef2f7;
    border-left: 4px solid var(--wp--preset--color--primary);
    padding: 10px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.armbrust-rechner-wrapper .hinweis strong {
    color: #333;
}

.armbrust-rechner-wrapper sup {
    font-size: 0.75em;
    vertical-align: super;
}

.armbrust-rechner-wrapper label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
}

.armbrust-rechner-wrapper input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.armbrust-rechner-wrapper input[type="number"]:focus {
    border-color: var(--wp--preset--color--primary);
    outline: none;
}

.armbrust-rechner-wrapper small {
    display: block;
    font-size: 0.8em;
    color: #777;
    margin-bottom: 10px;
}

.armbrust-rechner-wrapper button {
    background-color: var(--wp--preset--color--primary);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    display: block;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.armbrust-rechner-wrapper button:hover {
    background-color: #c91515;
}

.armbrust-rechner-wrapper #asr_ergebnis { /* ID spezifisch ansprechen */
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.armbrust-rechner-wrapper #asr_ergebnis h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.armbrust-rechner-wrapper #asr_ergebnis p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.armbrust-rechner-wrapper #asr_ergebnis span {
    font-weight: bold;
    color: var(--wp--preset--color--primary);
}