/* ============================================
   KING BANGKOK - 순수 CSS 다크 테마
   ============================================ */

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #e5e5e5;
    line-height: 1.6;
    min-height: 100vh;
}

/* 전역 배경 */
html, #wrapper, #container, #contents, .sub_content,
header, footer, #hd, #ft, #bo_w, #bo_v, #bo_list {
    background: #0a0a0a;
}

/* 링크 */
a { color: #ccc; text-decoration: none; transition: color 0.2s; }
a:hover { color: #E50914; }

/* 텍스트 */
h1, h2, h3, h4, h5, h6 { color: #fff; }
p, span, div, li, td, th, label { color: #e5e5e5; }

/* ============================================
   헤더
   ============================================ */
.kb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #2a2a2a;
    height: 64px;
}

.kb-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.kb-logo-icon {
    width: 40px;
    height: 40px;
    background: #E50914;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.kb-logo-text {
    font-size: 20px;
    font-weight: 900;
}

.kb-logo-text .red { color: #E50914; }
.kb-logo-text .white { color: #fff; }

/* 네비게이션 */
.kb-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.kb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}

.kb-nav-item:hover {
    background: #1a1a1a;
}

.kb-nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: transform 0.2s;
}

.kb-nav-item:hover .kb-nav-icon {
    transform: scale(1.1);
}

.kb-nav-icon.red { background: linear-gradient(135deg, #dc2626, #991b1b); }
.kb-nav-icon.pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.kb-nav-icon.yellow { background: linear-gradient(135deg, #eab308, #ea580c); }
.kb-nav-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.kb-nav-icon.purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.kb-nav-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }

.kb-nav-text {
    font-size: 12px;
    color: #9ca3af;
}

.kb-nav-item:hover .kb-nav-text {
    color: #fff;
}

/* 유저 메뉴 */
.kb-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kb-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.kb-user-btn:hover {
    background: #2a2a2a;
    color: #fff;
}

.kb-user-btn.primary {
    background: #E50914;
    border-color: #E50914;
}

.kb-user-btn.primary:hover {
    background: #b91c1c;
}

/* 모바일 메뉴 버튼 */
.kb-mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* 바디 패딩 (헤더 고정) */
.kb-body {
    padding-top: 64px;
}

/* ============================================
   메인 컨텐츠
   ============================================ */
.kb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* 섹션 타이틀 */
.kb-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kb-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.kb-section-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.kb-section-title p {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 4px;
}

/* 그리드 */
.kb-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kb-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 카드 */
.kb-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.kb-card:hover {
    border-color: #E50914;
    transform: translateY(-4px);
}

.kb-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    overflow: hidden;
}

.kb-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kb-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: #E50914;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.kb-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.kb-card:hover .kb-card-play {
    opacity: 1;
}

.kb-card-body {
    padding: 16px;
}

.kb-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kb-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #888;
}

.kb-card-meta i {
    margin-right: 4px;
}

/* ============================================
   게시판 공통
   ============================================ */

/* 글쓰기 폼 */
.tbl_frm01 {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
}

.tbl_frm01 th {
    background: #1a1a1a;
    color: #9ca3af;
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 20px;
    font-weight: 500;
    text-align: left;
    width: 120px;
    vertical-align: middle;
}

.tbl_frm01 td {
    background: #141414;
    border-bottom: 1px solid #2a2a2a;
    padding: 15px 20px;
    color: #e5e5e5;
}

.tbl_frm01 tr:last-child th,
.tbl_frm01 tr:last-child td {
    border-bottom: none;
}

/* 목록 테이블 */
.tbl_head01 {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    overflow: hidden;
}

.tbl_head01 thead th {
    background: #1a1a1a;
    color: #9ca3af;
    border-bottom: 1px solid #2a2a2a;
    padding: 14px 15px;
    font-weight: 500;
}

.tbl_head01 tbody td {
    background: #141414;
    border-bottom: 1px solid #2a2a2a;
    padding: 14px 15px;
    color: #e5e5e5;
}

.tbl_head01 tbody tr:hover td {
    background: #1a1a1a;
}

.tbl_head01 tbody tr:last-child td {
    border-bottom: none;
}

.tbl_head01 a { color: #fff; }
.tbl_head01 a:hover { color: #E50914; }

.bo_notice td { background: #1f1f1f; }

/* 입력 필드 */
.frm_input,
input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: #E50914;
}

textarea {
    min-height: 200px;
    resize: vertical;
}

::placeholder { color: #666; }

/* 버튼 */
.btn_submit, .btn01,
input[type="submit"],
button[type="submit"] {
    background: #E50914;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn_submit:hover, .btn01:hover {
    background: #b91c1c;
}

.btn_cancel, .btn02, .btn_frmline {
    background: #374151;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
}

.btn_cancel:hover, .btn02:hover {
    background: #4b5563;
}

.btn_confirm {
    background: #0f0f0f;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

/* 캡차 */
#captcha_img {
    border-radius: 6px;
    vertical-align: middle;
    margin-right: 10px;
}

#captcha_key,
input[name="captcha_key"] {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 10px 12px;
    color: #fff;
    width: 150px;
    vertical-align: middle;
}

/* 페이징 */
.pg_wrap, .pg {
    text-align: center;
    padding: 25px 0;
}

.pg_wrap a, .pg_wrap span,
.pg a, .pg span,
.pg_page, .pg_start, .pg_end {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    margin: 0 3px;
    background: #1a1a1a;
    color: #888;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.pg_wrap a:hover, .pg a:hover {
    background: #E50914;
    color: #fff;
    border-color: #E50914;
}

.pg_current {
    background: #E50914;
    color: #fff;
    border-color: #E50914;
    font-weight: 600;
}

/* 게시판 읽기 */
#bo_v {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

#bo_v_title, .bo_v_title {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

#bo_v_title h1, .bo_v_tit {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

#bo_v_info, .bo_v_info {
    color: #888;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid #2a2a2a;
}

#bo_v_info strong { color: #E50914; }

#bo_v_con, .bo_v_con {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 30px;
    color: #e5e5e5;
    line-height: 1.8;
    font-size: 15px;
}

#bo_v_con img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 첨부파일 */
#bo_v_file, .bo_v_file {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

#bo_v_file a { color: #60a5fa; }

/* 이전/다음글 */
#bo_v_nb {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

#bo_v_nb a {
    display: block;
    padding: 12px 15px;
    color: #ccc;
    border-bottom: 1px solid #2a2a2a;
}

#bo_v_nb a:last-child { border-bottom: none; }

#bo_v_nb a:hover {
    background: #1a1a1a;
    color: #E50914;
}

/* 댓글 */
#bo_vc, .bo_vc {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    margin-top: 25px;
    overflow: hidden;
}

#bo_vc h2 {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    border-bottom: 1px solid #2a2a2a;
}

.cmt_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cmt_list li {
    padding: 18px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.cmt_list li:last-child { border-bottom: none; }
.cmt_list li:hover { background: #1a1a1a; }

.cmt_name { color: #E50914; font-weight: 600; }
.cmt_txt { color: #e5e5e5; line-height: 1.6; margin: 8px 0; }
.cmt_info { color: #666; font-size: 13px; }

#fwrite_comment, .cmt_write {
    background: #1a1a1a;
    padding: 20px;
    border-top: 1px solid #2a2a2a;
}

#fwrite_comment textarea, .cmt_write textarea {
    width: 100%;
    min-height: 100px;
}

/* 검색 */
.bo_sch {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* 기타 */
.alert, .msg, .alert_msg {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    color: #fff;
    text-align: center;
}

input[type="checkbox"],
input[type="radio"] {
    accent-color: #E50914;
}

#hd_pop, .goog-te-banner-frame { display: none; }

/* 스크롤바 */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #444; }

/* ============================================
   게시판 섹션 스타일 (커뮤니티 스타일)
   ============================================ */
.kb-board-section {
    margin-bottom: 40px;
}

.kb-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.kb-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #9ca3af;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.kb-more-btn:hover {
    background: #2a2a2a;
    color: #fff;
}

/* 게시판 목록 */
.kb-board-list {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
}

.kb-board-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #2a2a2a;
    text-decoration: none;
    transition: background 0.2s;
}

.kb-board-item:last-child {
    border-bottom: none;
}

.kb-board-item:hover {
    background: #1a1a1a;
}

.kb-board-item:hover .kb-item-title {
    color: #E50914;
}

/* 썸네일 */
.kb-item-thumb {
    width: 80px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kb-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kb-item-thumb i {
    color: #3a3a3a;
    font-size: 20px;
}

/* 내용 */
.kb-item-content {
    flex: 1;
    min-width: 0;
}

/* 태그들 */
.kb-item-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.kb-tag-category {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
}

.kb-tag-region {
    color: #eab308;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kb-tag-region i {
    font-size: 10px;
}

.kb-tag-hot {
    padding: 2px 6px;
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    font-size: 11px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 제목 행 */
.kb-item-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.kb-item-title {
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}

.kb-comment-count {
    color: #E50914;
    font-weight: 700;
    font-size: 13px;
}

.kb-new-badge {
    padding: 2px 5px;
    background: #E50914;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 3px;
}

/* 메타 정보 */
.kb-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    flex-wrap: wrap;
}

.kb-author-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.kb-author-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.kb-author-prefix {
    color: #a855f7;
    font-weight: 500;
}

.kb-author-name {
    color: #d1d5db;
}

.kb-grade-badge {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.kb-meta-text {
    color: #6b7280;
}

.kb-meta-like {
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 오른쪽 정보 (PC) */
.kb-item-right {
    display: none;
    flex-shrink: 0;
    min-width: 100px;
    text-align: right;
    padding: 8px 16px;
    background: #1a1a1a;
    border-radius: 8px;
}

.kb-item-right span {
    display: block;
    color: #d1d5db;
    font-size: 13px;
}

.kb-item-right .kb-time {
    color: #6b7280;
    font-size: 12px;
}

@media (min-width: 768px) {
    .kb-item-right {
        display: block;
    }
}

/* 빈 상태 */
.kb-empty {
    text-align: center;
    padding: 50px 20px;
    color: #6b7280;
}

.kb-empty i {
    font-size: 40px;
    margin-bottom: 15px;
    opacity: 0.3;
}

/* 지역 탭 */
.kb-area-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.kb-area-tabs::-webkit-scrollbar {
    display: none;
}

.kb-tab {
    padding: 8px 16px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #9ca3af;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.kb-tab:hover,
.kb-tab.active {
    background: #ec4899;
    color: #fff;
    border-color: #ec4899;
}

/* 호텔 그리드 */
.kb-hotel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .kb-hotel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .kb-hotel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .kb-hotel-grid {
        grid-template-columns: 1fr;
    }
}

.kb-hotel-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.2s;
}

.kb-hotel-card:hover {
    border-color: #3b82f6;
    transform: translateY(-3px);
}

.kb-hotel-thumb {
    position: relative;
    aspect-ratio: 4/3;
    background: #0a0a0a;
    overflow: hidden;
}

.kb-hotel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.kb-hotel-card:hover .kb-hotel-thumb img {
    transform: scale(1.05);
}

.kb-hotel-thumb > i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(59, 130, 246, 0.3);
    font-size: 36px;
}

.kb-hotel-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
}

.kb-badge-new {
    padding: 3px 8px;
    background: #E50914;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.kb-badge-hot {
    padding: 3px 8px;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.kb-hotel-area {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #60a5fa;
    font-size: 12px;
    border-radius: 4px;
}

.kb-hotel-info {
    padding: 15px;
}

.kb-hotel-info h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.kb-hotel-card:hover .kb-hotel-info h3 {
    color: #60a5fa;
}

.kb-hotel-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
}

.kb-hotel-meta > div {
    display: flex;
    gap: 10px;
}

.kb-hotel-meta .kb-like {
    color: #ef4444;
}

/* ============================================
   푸터
   ============================================ */
.kb-footer {
    background: #0f0f0f;
    border-top: 1px solid #2a2a2a;
    padding: 40px 20px;
    margin-top: 60px;
}

.kb-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.kb-footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
}

.kb-footer-logo .red { color: #E50914; }
.kb-footer-logo .white { color: #fff; }

.kb-footer-text {
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

/* ============================================
   반응형
   ============================================ */
@media (max-width: 1024px) {
    .kb-grid-4 { grid-template-columns: repeat(3, 1fr); }
    .kb-nav { display: none; }
    .kb-mobile-menu-btn { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
    .kb-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .kb-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .kb-grid-2 { grid-template-columns: 1fr; }
    
    .tbl_frm01 th, .tbl_frm01 td {
        display: block;
        width: 100%;
    }
    
    .tbl_frm01 th {
        padding: 10px 15px;
        border-bottom: none;
    }
    
    .tbl_frm01 td {
        padding: 10px 15px 15px;
    }
    
    .kb-user-btn span { display: none; }
}

@media (max-width: 480px) {
    .kb-grid-4, .kb-grid-3, .kb-grid-2 { grid-template-columns: 1fr; }
    
    .kb-header-inner { padding: 0 15px; }
    .kb-logo-text { font-size: 16px; }
    .kb-container { padding: 20px 15px; }
}
