/* /fix_mbti_json/stylem.css */
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: #f4f7f9; margin: 0; padding: 20px; }
.container { max-width: 1200px; margin: auto; background: #fff; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); overflow: hidden; }
h1, h2 { color: #2c3e50; padding: 20px 25px; margin: 0; }
h1 { background-color: #f8f9fa; border-bottom: 1px solid #e9ecef; }
.content-wrapper { padding: 25px; }
.btn { background: #3498db; color: white; border: none; padding: 12px 22px; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; font-size: 15px; font-weight: 500; transition: all 0.2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3); }
.btn-success { background: #2ecc71; }
.btn-success:hover { box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3); }
textarea { width: 100%; min-height: 250px; padding: 15px; border-radius: 6px; border: 1px solid #dcdfe2; font-family: monospace; font-size: 13px; box-sizing: border-box; margin-top: 10px; }
table { width: 100%; border-collapse: collapse; margin-top: 20px; }
th, td { border: 1px solid #e9ecef; padding: 14px; text-align: left; }
th { background-color: #f8f9fa; font-weight: 600; font-size: 14px; }
.korean-text { background: #fff9e6; }
.english-text { background: #e8f7ee; font-weight: bold; }
.info-box { background: #eaf2f8; padding: 20px; border-radius: 8px; border-left: 5px solid #3498db; margin: 20px 0; }
.dashboard { display: flex; gap: 20px; background: #f8f9fa; padding: 20px 25px; border-bottom: 1px solid #e9ecef; }
.dash-item { background: white; padding: 15px 20px; border-radius: 8px; text-align: center; flex-grow: 1; border: 1px solid #e9ecef; }
.dash-item .label { font-size: 14px; color: #555; margin-bottom: 8px; }
.dash-item .value { font-size: 24px; font-weight: 600; color: #3498db; }

/* Toast 알림 스타일 */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 1000; }
.toast { background-color: #2c3e50; color: white; padding: 15px 25px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); margin-bottom: 10px; opacity: 0; transition: opacity 0.3s, transform 0.3s; transform: translateY(20px); font-size: 15px; }
.toast.show { opacity: 1; transform: translateY(0); }
/* /fix_mbti_json/stylem.css 및 /fix_mbti_results/stylem.css 에 추가 */

/* Main Navigation Bar Styles */
.main-nav {
    background-color: #34495e;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
}
.main-nav a:hover {
    background-color: #4a627a;
}
.main-nav a.active {
    background-color: #3498db;
    color: white;
    font-weight: bold;
}