/* =============================================================================
 * 24good.co.kr 공통 CSS
 * 옛날 인라인 스타일이 많은 사이트라 최소한의 보강만 추가
 * ===========================================================================*/

body {
    font-family: '굴림', Gulim, '돋움', Dotum, sans-serif;
    font-size: 9pt;
    color: #404040;
    margin: 0;
    padding: 0;
}

a {
    color: #404040;
    text-decoration: none;
}

a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* 인풋 스타일 보강 */
input[type="text"],
input[type="password"],
select,
textarea {
    font-family: '굴림', sans-serif;
    font-size: 9pt;
}

/* 버튼 보강 */
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
    font-family: '굴림', sans-serif;
    font-size: 9pt;
    padding: 3px 10px;
    cursor: pointer;
}

/* 테이블 기본 (옛날 스타일 유지하면서 살짝 정돈) */
table {
    border-collapse: collapse;
}

td, th {
    font-size: 9pt;
}

/* 페이징 */
.paging a {
    margin: 0 4px;
    color: #444;
}
.paging a:hover {
    color: #ff6600;
}

/* 알림 메시지 */
.msg-info  { color: #0066cc; }
.msg-error { color: #cc0000; }
.msg-ok    { color: #009900; }
