/* error-pages.css - 所有錯誤頁面共用 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Microsoft JhengHei', '微軟正黑體', sans-serif;
    background-color: #f5f5f5;
}

.error-container {
    width: 100%;
    text-align: center;
}

.logo {
    margin-top: 50px;
    height: auto;
}

.error-content {
    margin-top: 100px;
}

.status-label {
    color: rgb(82, 82, 82);
    font-size: 14pt;
    margin-bottom: 20px;
}

.status-code {
    font-size: 70pt;
    color: rgb(82, 82, 82);
    font-weight: bold;
    margin-bottom: 10px;
    font-family: sans-serif;
}

.divider {
    width: 80%;
    border: none;
    border-top: 1px solid rgb(224, 224, 224);
    margin: 20px auto;
}

.error-description {
    margin-top: 20px;
}

.error-title {
    font-weight: 900;
    color: rgb(82, 82, 82);
    margin: 10px 0;
    font-size: 12pt;
}

.error-message {
    color: rgb(82, 82, 82);
    margin: 10px 0;
    font-size: 14pt;
    font-weight: bold;
}

.error-detail {
    color: rgb(120, 120, 120);
    margin: 15px 0;
    font-size: 11pt;
}

/* RWD - 手機版 */
@media screen and (max-width: 768px) {
    .logo {
        max-width: 150px;
        margin-top: 30px;
    }
    
    .error-content {
        margin-top: 50px;
    }
    
    .status-code {
        font-size: 50pt;
    }
    
    .divider {
        width: 90%;
    }
}
