/*
 * style/default.css
 * atdt01410 - The Web interface mimics virtual terminal environment
 * Copyright (C) 2003, 2004 SPLUG, Soongsil university, Republic of Korea.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
/* modernized default.css */

body {
    margin: 0;
    background-color: #000080;
    color: #ffffff;
    font-family: monospace;
    font-size: 18px;   /* 🔥 14 → 18 */
	padding: 20px;
}

pre {
    font-size: 16px;
    line-height: 1.6;

	white-space: pre-wrap;   /* 🔥 핵심 */
    word-break: break-all;   /* 🔥 핵심 */

	width: 100%;
	max-width: 1200px;
}

/* 입력창 */
input.cmd-input {
    height: 18px;
    margin: 0;
    padding: 2px;
    width: 400px;
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    border-bottom: 1px solid white;
}

/* 링크 */
a {
    color: #00ffff;
    text-decoration: none;
}

a:hover {
    background-color: #000000;
    border: 1px solid #555;
}

/* 메뉴 */
a.menu {
    color: white;
}

a.menu:hover {
    background-color: black;
}

/* 타이틀 */
.title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #000080;
}

/* 하단 */
.bottom {
    margin-top: 20px;
    color: white;
}

/* 메시지 박스 */
.msgbox {
    color: yellow;
    margin-top: 10px;
}

/* 숨김 iframe */
iframe.debug {
    display: none;
}

/* 컨테이너 */
.container {
    width: 640px;
    padding-left: 8px;
}

/* 텍스트 영역 */
textarea {
    width: 620px;
    height: 260px;
    background: transparent;
    color: white;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    font-family: "D2Coding", "Courier New", monospace;
}

/* 버튼 */
input[type="button"],
input[type="submit"] {
    background: #000;
    color: white;
    border: 1px solid #555;
    cursor: pointer;
}

/* 강조 텍스트 */
.highlight {
    color: red;
}

.success {
    color: #00ff00;
}

.info {
    color: #00ffff;
}

.warning {
    color: #ffff00;
}