/*
Theme Name: Grammar Defender Styles
Description: Styles for Grammar Defender WordPress Plugin
*/
#grammar-defender-container {
    max-width: 700px;
    margin: 30px auto;
    padding: 20px;
    border: 2px solid #444;
    background: #fdfdfd;
    border-radius: 10px;
    font-family: 'Segoe UI', sans-serif;
}
#grammar-defender-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
#grammar-defender-levels button {
    margin: 5px;
    padding: 8px 16px;
    background-color: #2271b1;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#grammar-defender-levels button:hover {
    background-color: #1a5e94;
}
#grammar-defender-leaderboard {
    text-align: right;
}
#grammar-defender-leaderboard h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}
#top-scores {
    list-style: none;
    padding: 0;
    margin-top: 5px;
}
#top-scores li {
    font-size: 0.9rem;
    font-weight: bold;
}
#grammar-defender-game {
    margin-top: 20px;
    text-align: center;
}
#gameSentence {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    min-height: 50px;
    color: #c0392b;
}
#correctionInput {
    padding: 10px;
    width: 80%;
    font-size: 1rem;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-bottom: 10px;
}
#scoreDisplay {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
}
@media screen and (max-width: 600px) {
    #grammar-defender-header {
        flex-direction: column;
        align-items: flex-start;
    }
    #correctionInput {
        width: 100%;
    }
}