/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 2025. 10. 29., 오전 1:03:59
    Author     : Haruki
*/

/* === 게시글 공통 스타일 === */

html {
    overflow-y: scroll;
    height: 100%;
}

body {
    font-family: "Noto Sans KR", sans-serif;
    background-color: #e7fdea;
    /*#e7fdeb;*/
    /*#f8f9fa;*/
    margin: 0;
    padding: 0;

    /* 추가 */
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

main {
    flex: 1;
}

.container {
    width: 900px;
    margin: 30px auto;
    /*background-color: #fcfcfc;*/
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 40px 50px 40px 50px;
}

h2 {
    margin-top: 0;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

/*todo: 버튼 클래스 명확화*/
/*button,
.btn {
    padding: 7px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
}

button:hover,
.btn:hover {
    background-color: #e9ecef;
}*/

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 4px;
    background-color: #f8f9fa;
    color: #333;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.15s ease;
}

/* 글 작성, 목록 버튼 */
.btn-list,
.btn-write {
    color: white;
    background: #4FC273;
    font-weight: 600;
}

.btn-list:hover,
.btn-write:hover {
    background: #63CA84;
}

/* 유튜브 iframe */
.youtube-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    margin: 20px 0;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 6px;
}

/* 에러메시지 */
.error-msg {
    color: #e63946;
    font-size: 13px;
    font-weight: 400;
    margin: 0 5px;
}