/* styles.css - 倉頡字典共用樣式 */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 25px;
    background-color: #fff;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
}

pre {
    font-family: "Courier New", Courier, monospace;
    font-size: 15.8px;
    line-height: 1.65;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    overflow-x: auto;
    white-space: pre;
    tab-size: 28;
    -moz-tab-size: 28;
    -o-tab-size: 28;
}

/* 電腦版對齊 */
@media (max-width: 900px) {
    pre {
        tab-size: 24;
        font-size: 15px;
    }
}

/* 手機版自動換行 */
@media (max-width: 600px) {
    pre {
        white-space: pre-wrap;
        word-break: break-all;
    }
}