/* STYLES */
.login-section {
    min-height: calc(100vh - 90px);
    height: auto;
}

.contents-wrap {
    min-height: 350px;
}

.check {
    width: 25px;
    flex-shrink: 0;
    padding-left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-write-wrap .attachment-wrap .file-input-wrap li {
    margin: 8px 0;
}

.board-write-wrap .attachment-wrap .btn-add-input {
    height: 26px;
    padding: 0 10px;
    background: #fff;
    border: 0.5px solid rgba(51, 51, 51, 0.2);
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.iframe-container {
    width: 100%;
    min-width: 1360px;
    margin-top: 90px;
}

.pre-wrap {
    white-space: pre-wrap;
}

.footer-middle {
    width: 100%;
    position: relative;
    text-align: center;
}

.footer-middle p {
    text-align: center;
}

.language-select{
    position: absolute;
    top: -7px;
    right: 15vw;
}

.language-select select {
    width: 140px;
    padding: 4px 6px;
    font-size: 14px;
}

/* 임시 */
/* 팝업 모달 */
.smart-modal-layer {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-modal-content {
    background: #fff;
    padding: 25px 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
}

.smart-modal-content h1 {
    margin-bottom: 18px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
}

.smart-modal-message {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 28px;
    word-break: keep-all;
}

.smart-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.smart-modal-btn {
    padding: 10px 26px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 90px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.smart-btn-confirm {
    width: 200%;
    max-width: 200px;
    background-color: #1e71c1;
    color: #fff;
    display: inline-block;
    text-align: center;
}
.smart-btn-confirm:hover {
    background-color: #155a96;
}

.smart-btn-cancel {
    width: 200%;
    max-width: 200px;
    background-color: #d3d3d3;
    color: #555;
    display: inline-block;
    text-align: center;
}
.smart-btn-cancel:hover {
    background-color: #a9a9a9;
    color: #fff;
}

/* 에러페이지 */
#center-stage {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    padding: 30px 40px;
    background: white;
    text-align: center;
    gap: 10px;
}

.error-box h3,
.error-box p,
.status-code,
.error-box span {
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.error-box h3 {
    font-weight: bold;
    font-size: 1.2rem;
}

.logo img {
    width: 280px;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.status-code {
    font-size: 4rem;
    color: #333;
}

#loginPageBtn {
    align-self: center;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1000;
}
