/* css/master.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    max-width: 900px; /* Leicht erhöht für mehr Platz */
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    color: #34495e;
    margin-top: 30px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}
h3 {
    color: #2980b9;
    margin-top: 20px;
    font-size: 1.2em;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    background: #ecf0f1;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}
li:hover {
    background: #dde1e2;
}
a {
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
    display: block;
}
a:hover {
    color: #1a527f;
}
.question-block {
    background-color: #ecf0f1;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 5px solid #2980b9;
}
.question {
    font-weight: bold;
    color: #2c3e50;
}
.answer {
    margin-top: 10px;
}
.example {
    font-style: italic;
    color: #555;
    margin-top: 10px;
    border-left: 3px solid #7f8c8d;
    padding-left: 10px;
}
.back-link {
    display: block;
    margin-top: 30px;
    text-align: center;
    text-decoration: none;
    color: #2980b9;
    font-weight: bold;
}
.back-link:hover {
    color: #1a527f;
}