/* 기본 설정 */
body, html { margin: 0; padding: 0; font-family: 'Noto Sans KR', sans-serif; color: #333; background-color: #fff; }
ul { list-style: none; padding: 0; }
a { text-decoration: none; color: inherit; }

/* 헤더 */
header { display: flex; justify-content: space-between; align-items: center; padding: 20px 50px; border-bottom: 1px solid #eee; }
.logo img { height: 40px; }
.menu-icon { font-size: 24px; cursor: pointer; }

/* 로그인 컨텐츠 */
.login-container { max-width: 450px; margin: 80px auto; text-align: center; padding: 0 20px; }
.login-container h2 { font-size: 28px; margin-bottom: 40px; font-weight: 500; }

.input-group { margin-bottom: 15px; }
.input-group input { width: 100%; padding: 15px; border: 1px solid #ccc; border-radius: 2px; box-sizing: border-box; font-size: 16px; }

.login-options { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: #888; margin: 20px 0; }
.login-options label { display: flex; align-items: center; cursor: pointer; }
.login-options input[type="checkbox"] { margin-right: 8px; }

.btn-login { width: 100%; padding: 15px; background-color: #333; color: #fff; border: none; font-size: 18px; cursor: pointer; margin-bottom: 30px; }

/* SNS 로그인 */
.sns-login { margin-top: 50px; border-top: 1px solid #eee; padding-top: 30px; }
.sns-login p { font-size: 14px; color: #999; margin-bottom: 20px; }
.naver-icon { width: 50px; height: 50px; background-color: #2DB400; color: white; display: inline-flex; justify-content: center; align-items: center; border-radius: 5px; font-weight: bold; font-size: 24px; }

/* 푸터 */
footer { background-color: #fff; padding: 50px; border-top: 1px solid #eee; color: #666; font-size: 13px; line-height: 1.8; }
.footer-logo { margin-bottom: 20px; filter: grayscale(100%); opacity: 0.6; }
.footer-info span { margin-right: 15px; }
.copyright { margin-top: 30px; text-align: center; color: #999; text-transform: uppercase; }

/* SNS 아이콘 가상 */
.footer-social { margin-bottom: 20px; }
.footer-social a { margin-right: 15px; font-size: 18px; color: #999; }

.btn-edit {
    padding: 5px 10px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
}
.btn-delete {
    padding: 5px 10px;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 12px;
    margin-left: 5px;
}
.btn-edit:hover, .btn-delete:hover {
    opacity: 0.8;
}

/* 기존 style.css에 추가하거나 수정하세요 */
.main-nav a {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: 1px solid #333;
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
}
.main-nav a:hover {
    background: #333;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}