@charset "utf-8";

/* 초기화 */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    font-family: "Malgun Gothic", dotum, sans-serif;
    background: var(--bodyBg) !important;
}
html,
form,
fieldset,
img {
    margin: 0;
    padding: 0;
    border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Malgun Gothic", dotum, sans-serif;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
ul,
dl,
dt,
dd {
    margin: 0;
    padding: 0 !important;
    list-style: none;
    margin-bottom: 0 !important;
}
legend {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}
label,
input,
button,
select,
img {
    vertical-align: middle;
    font-size: 1.2rem;
}
input,
button {
    margin: 0;
    padding: 0;
    font-family: "Malgun Gothic", dotum, sans-serif;
    font-size: 1.2rem;
}
input[type="submit"] {
    cursor: pointer;
}
button {
    cursor: pointer;
}
textarea,
select {
    font-family: "Malgun Gothic", dotum, sans-serif;
    font-size: 1.2rem;
}
select {
    margin: 0;
}
p {
    margin: 0 !important;
    padding: 0;
    word-break: break-all;
}
hr {
    display: none;
}
pre {
    overflow-x: scroll;
    font-size: 1.3rem;
}
a {
    text-decoration: none !important;
}

*,
:after,
:before {
    box-sizing: border-box;
}

input[type="text"],
input[type="password"],
textarea {
    transition: all 0.3s ease-in-out;
    outline: none;
}

input[type="text"],
input[type="password"],
textarea {
    transition: all 0.3s ease-in-out;
    outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 9999s ease-out;
    -webkit-box-shadow: 0 0 0px 1000px var(--inputBg) inset !important;
    -webkit-text-fill-color: var(--fontColor);
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    -webkit-box-shadow: 0 0 5px #ffb6a8;
    -moz-box-shadow: 0 0 5px #ffb6a8;
    box-shadow: 0 0 5px #ffb6a8;
    border: 1px solid var(--primaryColor) !important;
}

.placeholdersjs {
    color: #aaa !important;
}
.dropdown-menu {
    padding: 0 !important;
    border: none !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

#wrapper {
    min-height: calc(100vh - 250px);
}

/* Material */

h5 {
    font-size: 1.5em;
}

:root {
    --hero-height: 56vh;
}
html,
body {
    height: 100%;
}
body {
    font-family: Roboto, system-ui, -apple-system, Segoe UI, Helvetica, Arial, "Apple SD Gothic Neo",
        "Noto Sans KR", "Malgun Gothic", sans-serif;
    margin: 0;
    background: #fafafa;
    color: #222;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.mdc-top-app-bar {
    background-color: black;
}

/* Top App Bar placeholder spacing */
.mdc-top-app-bar--fixed-adjust {
    padding-top: 64px;
}

/* Hero */
.hero {
    position: relative;
    height: var(--hero-height);
    background: linear-gradient(135deg, #6200ee 0%, #7e57c2 50%, #03dac6 120%);
    color: #fff;
    display: flex;
    align-items: center;
}
.hero__content {
    max-width: 760px;
}
.hero h1 {
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.hero p {
    margin: 0 0 24px;
    opacity: 0.95;
}
.hero__cta > * {
    margin-right: 12px;
}

/* Search Section */
.search-section {
    margin-top: -40px;
}
.search-card {
    border-radius: 16px;
}

/* Grid */
.section {
    padding: 48px 0;
}
.section__header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section__header h2 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.mdc-card {
    border-radius: 16px;
    overflow: hidden;
}
.course-card__media {
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
}
.course-card__content {
    padding: 16px;
}
.course-card__title {
    font-weight: 600;
    margin: 0 0 8px;
}
.course-card__meta {
    color: #666;
    font-size: 14px;
}
.course-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 16px;
}

/* Signup */
.signup-card {
    border-radius: 16px;
}
.signup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 900px) {
    .signup-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.footer {
    background: #111;
    color: #bbb;
    padding: 32px 0;
}
.footer a {
    color: #bbb;
    text-decoration: none;
}
.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.brand .material-icons {
    font-size: 24px;
}

:root {
    --mdc-primary: #6200ee;
    --mdc-theme-primary: black;
    --bg-light: #f7f7fb;
    --bg-dark: #0f1115;
    --card-radius: 16px;
    --pane-gap: 16px;
}
body {
    background: var(--bg-light);
}

/* 전체 래퍼 */
#split-container.split {
    display: flex;
    gap: var(--pane-gap);
    height: calc(100vh - 120px); /* 상단 네비게이션 여백 고려(대략) */
    padding: 16px;
    box-sizing: border-box;
}
/* 좌/우 패널 공통 카드 느낌 */
#left,
#right {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

/* 왼쪽(학습 비디오/설명/코멘트) */
#left {
    background: #ffffff !important;
}
.video-wrapper {
    background: #000;
}
.panel-section {
    padding: 16px 20px;
}
.panel-title {
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.panel-sub {
    color: #666;
    margin: 0 0 12px;
}
pre {
    margin: 0;
    white-space: pre-wrap;
    line-height: 1.7;
    background: #fafafa;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 12px 14px;
}
#comment {
    width: 100%;
    min-height: 120px;
    border-radius: 12px;
    border: 1px solid #e5e5ef;
    padding: 12px 14px;
    resize: vertical;
    background: #fff;
}

/* 버튼 공통(머티리얼 톤) */
.btn {
    border-radius: 999px;
    padding: 1px 0px;
    border: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    font-size: 1.3em;
    height: 2em;
}
.btn.btn-primary {
    background: var(--mdc-primary);
    color: #fff;
}
.btn.btn-secondary {
    background: #e9e9f3;
    color: #222;
}
.btn-black {
    background: black;
    color: white;
}
.w-100 {
    width: 100%;
}

/* 오른쪽(에디터/콘솔) */
#right {
    background: var(--bg-dark) !important;
    color: #eaeaf2;
    position: relative;
}
#right h5 {
    margin: 12px 16px 4px;
    font-weight: 700;
}
#editor {
    width: calc(100% - 24px);
    margin: 0 12px;
    border-radius: 12px;
    min-height: 300px;
    background: #1a1c22;
    color: #eaeaf2;
    border: 1px solid #262932;
}
#console-output {
    height: 220px;
    background: #11131a;
    border-radius: 12px;
    border: 1px solid #262932;
    padding: 12px;
    color: #cfd3e0;
}
/* #input-section{
    display:flex;
    gap:8px;
    align-items:center;
    padding: 8px 12px 0;
  }
  #user-input{
    flex:1;
    border-radius: 8px;
    border:1px solid #262932;
    background:#161821;
    color:#fff;
    padding:8px 10px;
    outline:none;
  } */

/* 실행 중 오버레이 */
#overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 17, 21, 0.58);
    color: #fff;
    backdrop-filter: blur(2px);
    display: none; /* 스크립트가 토글한다고 가정 */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

/* 하단 프로모션 섹션 */
.promo {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 6px 6px 6px 16px rgba(0, 0, 0, 0.06);
    margin: 1em;
    padding: 24px 16px 40px;
    font-size: 1.3em;
}
.promo__header {
    text-align: center;
    margin: 24px 0 8px;
}
.promo__subtitle {
    text-align: center;
    color: #666;
    margin: 0 0 12px;
}

.promo p {
    margin: 8px auto;
    line-height: 1.8;
    color: black;
}
.divider {
    height: 1px;
    background: #eee;
    margin: 16px auto;
    width: 120px;
}

/* BEST 영상 카드 그리드 */
.best-wrapper {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    margin: 16px;
    padding: 24px 16px 40px;
}
.best-title {
    text-align: center;
    margin: 24px 0 24px;
}
.best-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 900px) {
    .best-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 유튜브 iframe 반응형 유지 */
.video-wrapper > div {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* 스크롤 영역 */
#console-output {
    overflow-y: auto;
    overflow-wrap: anywhere;
}

.mdc-select__anchor {
    overflow: visible;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 1.2rem;
    margin-right: 6px;
    background: #f7f7fb;
    color: #333;
    margin-bottom: 5px;
}

table {
    width: 100%;
}

table th {
    text-align: left;
    width: 120px;
    vertical-align: top;
    background-color: #f0f2f5;
}

table td,
table th {
    padding: 0.5em;
}

pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0 1em;
    height: 28px;
    border-radius: 999px;
    background: #e8f0fe;
    color: #1a73e8;
    font-weight: 600;
    font-size: 1.2rem;
}

.chip--dark {
    background: #202124;
    color: #fff;
}

.chip--primary {
    background: #e8f0fe;
    color: #1a73e8;
}

.chip--warning {
    background: #fff4e5;
    color: #c07a00;
}

.chip--danger {
    background: #ffe8e6;
    color: #c62828;
}

.chip--success {
    background: #e8f5e9;
    color: #2e7d32;
}

.ratio-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

input::placeholder {
    color: black;
}

input::-webkit-input-placeholder {
    color: black;
}

input:-ms-input-placeholder {
    color: black;
}

/* 기본: 데스크톱에서는 센터 메뉴 보이고 햄버거 숨김 */
#center-nav {
    display: flex;
}
#menu-btn {
    display: none;
}

/* 모바일: 센터 메뉴 숨김, 햄버거 보임 */
@media (max-width: 768px) {
    #center-nav {
        display: none;
    }
    #menu-btn {
        display: inline-block;
    }
}

.mdc-drawer__content ul li {
    margin: 1.5em 0em;
}

/* 링크 스타일(예시) */
#center-nav ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}
#center-nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}
#logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* SNS LOGIN */
.login-sns {
    padding-bottom: 10px;
    margin-top: 5px;
    border: var(--border);
    border-bottom: var(--border);
    clear: both;
    color: var(--fontColor);
}
.login-sns h3 {
    padding-top: 10px;
    text-align: center;
    color: #777;
    font-weight: normal;
}
.sns-wrap {
    margin: 10px 0 0;
    text-align: center;
}
.sns-icon {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
}
.sns-icon:hover {
    text-decoration: none;
}
.sns-icon .ico {
    display: block;
    vertical-align: middle;
}
.sns-icon .txt svg {
    font-style: normal;
}

#fregisterform .form_01 .reg-form {
    margin-bottom: 20px;
}
#fregisterform .form_01 .reg-form .sns-wrap {
    margin: 10px 0 0;
    text-align: left;
}
.reg-form .sns-icon {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    margin: 0 1px;
}
.reg-form .sns-icon:hover {
    text-decoration: none;
}
.reg-form .sns-icon .ico {
    display: block;
    background: url("/static/img/social/sns_logo.png") no-repeat;
    vertical-align: middle;
    width: 24px;
    height: 24px;
}
.reg-form .sns-icon-not .ico {
    display: block;
    background: url("/static/img/social/sns_logo_not.png") no-repeat;
    vertical-align: middle;
}
.reg-form .sns-icon .txt {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}
.reg-form .sns-icon .txt svg {
    font-style: normal;
}

.sns-wrap-reg .sns-naver {
    border-color: #18a400;
    background: #2db400;
}
.sns-wrap-reg .sns-naver .ico {
    background-position: -29px 0;
}
.sns-wrap-reg .sns-icon {
    border-color: #dcdcdc;
}
.sns-wrap-reg .sns-icon-not {
    border-color: #8b8b8b;
}
.sns-wrap-reg .sns-naver {
    border-color: #18a400;
}
.sns-wrap-reg .sns-naver .ico {
    background-position: -29px 0;
}
/* SNS by COLOR */
.sns-wrap-over .sns-naver {
    background: url("/static/img/social/sns_naver_s.png") no-repeat;
}
.reg-form .sns-icon-not {
    border-color: #8b8b8b;
}

.social-login-loading {
    width: 100%;
    height: auto;
    text-align: center;
}
.social-login-loading p {
    display: inline-block;
    margin-top: 10px;
    padding: 40px 0 0;
    line-height: 30px;
}

/* 아웃로그인 */
#sns_outlogin .sns-icon {
    overflow: hidden;
    margin: 0 1px;
}
#sns_outlogin .sns-icon .txt {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 0);
}
#sns_outlogin .sns-icon .ico {
    width: 30px;
    height: 30px;
}

/*로그인 */
#sns_login {
    border: 0;
    margin-top: 15px;
    border-top: var(--border);
}
#sns_login h3 {
    padding: 10px 0 0;
    text-align: left;
    font-weight: bold;
}
#sns_login form {
    padding: 5px 20px 0px 20px;
}
#sns_login .sns-icon {
    position: relative;
    display: block;
    height: 40px;
    line-height: 40px;
    width: 100%;
    margin: 0 0 5px;
    padding-left: 40px;
    text-align: left;
    color: #fff;
    border-radius: 2px;
}
#sns_login .sns-naver {
    background-color: #1fc800;
    background-position: 5px 5px;
    border: 1px solid #1ea505;
}

.board-page #bo_v {
    margin: 0 auto;
    max-width: var(--maxw);
    background: var(--c-bg);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 24px;
    box-sizing: border-box;
}

/* 상단: 작성자/통계/액션 */
.board-page #bo_v_info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 20px;
    margin-top: 24px;
}

.board-page .profile_info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.board-page .profile_info .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 50px;
}

.board-page .profile_info .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.board-page .profile_info_ct {
    color: var(--c-sub);
    line-height: 1.2;
    font-size: 15px;
}

.board-page .profile_info_ct strong {
    color: var(--c-sub);
    font-weight: 500;
}

/* 상단 버튼(목록/답변/글쓰기/옵션) */
.board-page #bo_v_top ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

/* 옵션 드롭다운 */
.board-page .more_opt {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 8px;
    box-shadow: var(--shadow);
    min-width: 140px;
    z-index: 10;
}

.board-page .more_opt li {
    list-style: none;
}

.board-page .more_opt a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--c-fg);
    text-decoration: none;
    font-size: 14px;
}

.board-page .more_opt a:hover {
    background: #f6f6f6;
}

/* 본문 */
.board-page #bo_v_atc h1 {
    text-align: center;
    margin: 28px 0 10px;
}

.board-page #bo_v_atc h5 {
    text-align: center;
    font-size: 20px;
    margin: 22px 0 12px;
}

/* 이미지 영역 */
.board-page #bo_v_img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 10px auto;
}

/* 첨부 파일 리스트 */
.board-page #bo_v_file ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.board-page #bo_v_file li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 14px;
    color: #666;
    margin-top: 12px;
    transition: background 0.15s;
}

.board-page #bo_v_file li:hover {
    background: #fafafa;
}

.board-page #bo_v_file a {
    color: #111;
    text-decoration: none;
}

.board-page #bo_v_file a:hover {
    text-decoration: underline;
}

/* 이전/다음 */
.board-page #bo_v_nb {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 28px;
    padding: 0;
    list-style: none;
}

.board-page #bo_v_nb a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: #111;
    background: #fff;
    box-shadow: var(--shadow);
}

.board-page #bo_v_nb a:hover {
    background: #fafafa;
}

.board-page #bo_v_nb p {
    margin: 0;
    color: #555;
}

/* 로딩 오버레이 */
.board-page #loading {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.board-page #loading .spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    color: #fff;
}

/* 반응형 */
@media (max-width: 768px) {
    .board-page #bo_v {
        padding: 16px;
        border-radius: 12px;
    }

    .board-page tbody th {
        width: 120px;
    }

    .board-page #bo_v_info {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .board-page #bo_v_nb {
        grid-template-columns: 1fr;
    }
}

/* 모든 CSS를 .board-page 안에서만 적용 */
.board-page {
    --c-bg: #fff;
    --c-fg: #111;
    --c-sub: #666;
    --c-border: #e5e7eb;
    --c-soft: #f7f7f8;
    --c-accent: #6200ee;
    --c-accent-weak: #eee7ff;
    --radius: 14px;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    --maxw: 100%;
}

.board-page .board_container {
    display: block;
}
.board-page #fwrite {
    margin: 0 auto;
    max-width: var(--maxw);
    background: var(--c-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    box-sizing: border-box;
}

.board-page h1 {
    margin: 20px 0 6px;
    font-size: 22px;
    text-align: center;
}
.board-page h5 {
    margin: 24px 0 12px;
    font-size: 18px;
    text-align: center;
}

.board-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 22px;
    font-size: 15px;
}
.board-page thead th {
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--c-border);
    padding: 12px;
    background: var(--c-soft);
    color: var(--c-fg);
}
.board-page tbody th,
.board-page tbody td {
    border-bottom: 1px solid var(--c-border);
    padding: 12px;
    vertical-align: top;
}
.board-page tbody td:nth-child(1) {
    color: #374151;
    font-weight: 600;
    width: 160px;
    background: #fcfcfc;
}
.board-page pre {
    white-space: pre-wrap;
    margin: 0;
    font-family: inherit;
}

.board-page .frm_input,
.board-page .full_input,
.board-page input[type="text"],
.board-page input[type="file"],
.board-page input[type="number"],
.board-page input[type="password"],
.board-page select,
.board-page textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid var(--c-border);
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    color: var(--c-fg);
    outline: 0;
    transition: border 0.15s, box-shadow 0.15s;
}
.board-page .frm_input:focus,
.board-page .full_input:focus,
.board-page input:focus,
.board-page select:focus,
.board-page textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(98, 0, 238, 0.12);
}
.board-page textarea {
    min-height: 120px;
    resize: vertical;
}

.board-page .form-select {
    appearance: none;
    background: #fff;
}
.board-page .form-select-lg {
    font-size: 16px;
}
.board-page .mb-3 {
    margin-bottom: 12px;
}

.board-page .bo_w_flie {
    border: 1px solid var(--c-border);
    border-radius: 12px;
    padding: 12px;
    margin: 12px 0;
    background: #fff;
}
.board-page .bo_w_flie .mt-1 {
    margin-top: 4px;
}
.board-page .elip {
    max-width: 260px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.board-page .btn {
    appearance: none;
    border: 1px solid var(--c-border);
    background: #fff;
    color: var(--c-fg);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 200px;
    font-size: 20px;
}
.board-page .btn:hover {
    background: #fafafa;
}
.board-page .main-bg {
    background: var(--c-accent);
    border-color: var(--c-accent);
}
.board-page .main-bg:hover {
    background: #5a00d6;
}
.board-page .text-white {
    color: #fff !important;
}
.board-page .bg-secondary {
    background: #4b5563;
    border-color: #4b5563;
}
.board-page .bg-secondary:hover {
    background: #3f4855;
}

.board-page .fs-4 {
    font-size: 1.25rem;
}
.board-page .rounded-2 {
    border-radius: 12px;
}
.board-page .my-3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.board-page .text-end {
    text-align: right;
}
.board-page .position-relative {
    position: relative;
}

.board-page .bo_w_select {
    position: relative;
}
.board-page .position-absolute {
    position: absolute;
}
.board-page .end-0 {
    right: 0;
}
.board-page .p-0 {
    padding: 0;
}
.board-page .my-3 {
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .board-page #fwrite {
        padding: 14px;
        border-radius: 12px;
    }
    .board-page tbody td:nth-child(1) {
        width: 120px;
    }
}

.board-page .d-flex {
    display: flex;
}

.board-page .justify-content-space-around {
    justify-content: space-around;
}
.board-page .align-items-center {
    align-items: center;
}
