/*
Theme Name: Ambulance119 Theme
Description: (사)대한구조봉사회 안산시지부 전용 테마
Version: 1.0
Author: Ambulance119
*/

/* 기본 리셋 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* 고정 헤더 */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 0;
    border-bottom: none;
    line-height: 1;
}

.header-top {
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    margin-bottom: 0;
    border-bottom: none;
    line-height: 1;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info a:hover {
    color: #ffd700;
}

.emergency-number {
    background: #ffd700;
    color: #c0392b;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: #fff;
    transform: scale(1.05);
}

.header-main {
    padding: 1rem 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-logo h1 {
    font-size: 2rem;
    font-weight: bold;
}

.site-logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.site-logo .logo-link {
    display: block;
    width: 200px;
    height: 60px;
    background-image: url('images/logo.png'); /* 로고 파일 경로에 맞게 수정 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    text-indent: -9999px;
    overflow: hidden;
}

/* 네비게이션 */
.main-navigation {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-top: 0;
    border-top: none;
    padding: 0;
    line-height: 1;
}

.main-navigation .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 네비게이션 래퍼 */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1;
}

/* 데스크톱 메뉴 */
.desktop-menu {
    display: block;
    width: 100%;
    line-height: 1;
}

.main-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
    gap: 0;
    line-height: 1;
}

.main-menu li {
    position: relative;
    flex: 1;
    text-align: center;
    line-height: 1;
}

.main-menu a {
    display: block;
    padding: 1rem 0.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 1.2;
}

.main-menu a:hover {
    color: #e74c3c;
}

/* 모바일 메뉴 토글 */
.mobile-menu-toggle {
    display: none; /* 기본적으로 숨김, 모바일에서만 보임 */
}

/* 모바일 메뉴 - 기본 상태에서는 완전히 숨김 */
.mobile-menu {
    display: none;
}

/* 햄버거 버튼은 기본적으로 숨김 */
.hamburger-btn {
    display: none;
}

.hamburger-btn:hover {
    background: rgba(255,255,255,1);
}

.hamburger-btn span {
    display: block;
    width: 16px;
    height: 2px;
    background-color: #c0392b;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -5px);
}

/* 메인 콘텐츠 */
.main-content {
    margin-top: 180px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem 0 1rem;
}

/* 히어로 섹션 */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
}

/* 서비스 그리드 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px; /* 기존 사이즈로 복원 */
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.service-content p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.95rem;
    flex: 1;
}

.service-link-wrapper {
    margin-top: 0.3rem;
    text-align: right;
}

.service-link {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-link {
    color: #c0392b;
}



/* 페이지 콘텐츠 */
.page-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.page-content h1 {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.page-content h2 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* 이미지 플레이스홀더 */
.image-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #999;
    margin: 1rem 0;
}

.image-placeholder::before {
    content: "📷 이미지 영역";
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* 이미지가 있을 때 플레이스홀더 스타일 제거 */
.image-placeholder:not(:empty) {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: inherit;
}

.image-placeholder:not(:empty)::before {
    display: none;
}

/* 비디오 플레이스홀더 */
.video-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    color: #999;
    margin: 1rem 0;
}

.video-placeholder::before {
    content: "🎥 비디오 영역";
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* 이미지가 있을 때 부모 요소 스타일 재정의 */
.video-placeholder:not(:empty) {
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    color: inherit;
}

.video-placeholder:not(:empty)::before {
    display: none;
}

/* 서비스 페이지/메인 소개 이미지 공통 스타일 */
.service-page-image {
    width: 100%;
    height: 350px !important;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    margin: 0;
}


@media (max-width: 768px) {
    .service-page-image {
        height: 250px !important;
    }
}

/* 푸터 */
.site-footer {
    background: #2c3e50;
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-left h3,
.footer-right h3 {
    color: #e74c3c;
    font-size: 1.3rem;
    margin: 0 0 1rem 0;
    font-weight: bold;
}

.info-line {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-line a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-line a:hover {
    color: #e74c3c;
}

/* 푸터 하단 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

.legal-links {
    text-align: center;
    margin-top: 0.5rem;
}

.legal-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-main .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-menu {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .main-navigation {
        background: transparent;
        box-shadow: none;
        position: static;
    }
    
    .main-content {
        margin-top: 120px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-page-image {
        height: 250px;
    }
    
    /* 햄버거 버튼 */
    .hamburger-btn {
        display: flex !important;
        background: rgba(255,255,255,0.9);
        border: none;
        border-radius: 4px;
        cursor: pointer;
        padding: 0.5rem;
        flex-direction: column;
        gap: 3px;
        z-index: 1004;
        box-shadow: 0 1px 3px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
    }
    
    .hamburger-btn span {
        display: block;
        width: 16px;
        height: 2px;
        background-color: #c0392b;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 5px);
    }
    
    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(0px, -5px);
    }
    
    /* 모바일 메뉴 */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 150px;
        left: 0;
        width: 100%;
        height: calc(100vh - 150px);
        background: white;
        z-index: 1003;
        padding-top: 0;
        border-top: 1px solid #eee;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0.5rem;
    }
    
    .mobile-menu-list li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-list a {
        display: block;
        padding: 0.8rem 1rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
    }
    
    .mobile-menu-list a:hover {
        background-color: #f8f9fa;
        color: #e74c3c;
    }
}

/* 태블릿 반응형 */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-menu a {
        font-size: 0.9rem;
        padding: 1rem 0.3rem;
    }
    
    .main-menu {
        gap: 0;
    }
}

/* 중간 크기 화면 */
@media (min-width: 1025px) and (max-width: 1200px) {
    .main-menu a {
        font-size: 0.92rem;
        padding: 1rem 0.4rem;
    }
}

/* 큰 화면 */
@media (min-width: 1201px) {
    .main-menu a {
        font-size: 0.95rem;
        padding: 1rem 0.5rem;
    }
}

/* 유틸리티 클래스 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
} 

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.header-flex-col {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.row-top, .row-bottom {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: flex-start;
}

.row-top {
    margin-bottom: 0.1rem;
}

.site-logo {
    flex-shrink: 0;
    min-width: 120px;
}

.contact-info {
    flex-shrink: 1;
    min-width: 0;
}

.direct-number, .emergency-number {
    background: #ffd700;
    color: #c0392b;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.direct-number:hover, .emergency-number:hover {
    background: #fff;
    transform: scale(1.05);
}

.mobile-break {
    display: none;
}

.header-main-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.row-1, .row-2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    flex-shrink: 0;
}

.contact-info {
    flex-shrink: 1;
}

.direct-number, .emergency-number {
    background: #ffd700;
    color: #c0392b;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.direct-number:hover, .emergency-number:hover {
    background: #fff;
    transform: scale(1.05);
}

.mobile-break {
    display: none;
}

/* 모바일 레이아웃 */
@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
    
    .header-main-flex {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.3rem;
    }
    
    .row-1 {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.2rem;
        display: flex;
    }
    
    .row-2 {
        width: 100%;
        justify-content: space-between;
        gap: 0.4rem;
        flex-wrap: nowrap;
    }
    
    .site-logo {
        width: auto;
        text-align: left;
        flex: 1;
    }
    
    .contact-info {
        width: auto;
        text-align: center;
        flex: 1;
    }
    
    .direct-number {
        white-space: normal;
        width: 48%;
        min-height: 40px;
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
        line-height: 0.7;
        text-align: center;
        margin: 0;
        border-radius: 25px;
    }
    
    .emergency-number {
        white-space: normal;
        width: 48%;
        min-height: 40px;
        padding: 0.5rem 0.5rem;
        font-size: 0.95rem;
        line-height: 0.7;
        text-align: center;
        margin: 0;
        border-radius: 25px;
    }
} 

/* 모바일 반응형 */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .main-content {
        margin-top: 160px;
        padding: 1.5rem 1rem 0 1rem;
    }
    
    .header-main-flex {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.3rem;
    }
    
    .row-1 {
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        display: flex;
    }
    
    .row-2 {
        width: 100%;
        justify-content: space-between;
        gap: 0.4rem;
        flex-wrap: nowrap;
        margin-top: 0.2rem;
    }
    
    .site-logo {
        width: auto;
        text-align: left;
        flex: 1;
    }
    
    .contact-info {
        width: auto;
        text-align: center;
        flex: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        width: auto;
        flex: 0 0 auto;
        margin-left: 0.5rem;
    }
    
    .direct-number {
        white-space: normal;
        width: 48%;
        min-height: 40px;
        padding: 0.4rem 0.4rem;
        font-size: 0.95rem;
        line-height: 0.7;
        text-align: center;
        margin: 0;
        border-radius: 25px;
    }
    
    .emergency-number {
        white-space: normal;
        width: 48%;
        min-height: 40px;
        padding: 0.4rem 0.4rem;
        font-size: 0.95rem;
        line-height: 0.7;
        text-align: center;
        margin: 0;
        border-radius: 25px;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .nav-wrapper {
        display: none;
    }
}

/* 관리자 바가 없는 경우 */
@media screen and (max-width: 782px) {
    .site-header {
        top: 0;
    }
    
    .main-navigation {
        top: 88px;
    }
    
    .main-content {
        margin-top: 148px;
    }
} 

/* 통일된 전화번호 박스 스타일 (상단 메뉴와 완전히 동일) */
.phone-button, .contact-button {
    background: #ffd700;
    color: #c0392b;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
    display: inline-block;
}

.phone-button:hover, .contact-button:hover {
    background: #fff;
    transform: scale(1.05);
    color: #c0392b;
}

/* 전화번호 박스 컨테이너 */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

/* 모바일에서 전화번호 박스 스타일 */
@media (max-width: 768px) {
    .phone-button, .contact-button {
        white-space: normal;
        width: 48%;
        min-height: 40px;
        padding: 0.4rem 0.4rem;
        font-size: 0.95rem;
        line-height: 0.7;
        text-align: center;
        margin: 0;
        border-radius: 25px;
    }
    
    .contact-buttons {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
} 

/* 푸터 모바일 반응형 */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left h3,
    .footer-right h3 {
        font-size: 1.2rem;
        margin: 0 0 0.8rem 0;
    }
    
    .info-line {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
} 

/* 병원 안내 페이지 스타일 */
.hospital-guide {
    margin: 2rem 0;
}
.hospital-section {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}
.hospital-section h3 {
    color: #e74c3c;
    margin: 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    position: relative;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}
.hospital-section h3:hover {
    background: #e9ecef;
}
.hospital-section h3::after {
    content: '▼';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
    font-size: 0.8rem;
}
.hospital-section.collapsed h3::after {
    transform: translateY(-50%) rotate(-90deg);
}
.hospital-list {
    display: none;
    padding: 1rem 1.5rem;
    background: white;
}
.hospital-section.expanded .hospital-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.8rem;
}
.hospital-item {
    background: #f8f9fa;
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    font-size: 0.9rem;
}
.hospital-item strong {
    color: #333;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.3rem;
}
.hospital-item .location {
    color: #666;
    font-size: 0.85rem;
}
.hospital-item .phone {
    color: #e74c3c;
    font-weight: bold;
    font-size: 0.85rem;
}

/* 기본적으로 서울, 경기도만 펼쳐진 상태 */
.hospital-section:not(.expanded) .hospital-list {
    display: none;
}

@media (max-width: 768px) {
    .hospital-section.expanded .hospital-list {
        grid-template-columns: 1fr;
    }
    .hospital-section {
        margin-bottom: 0.5rem;
    }
    .hospital-section h3 {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }
    .hospital-list {
        padding: 0.8rem 1rem;
    }
    .hospital-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
} 

/* Mangboard 플러그인 호환성 스타일 */
.mb-board {
    font-family: inherit;
    line-height: 1.6;
}

.mb-board table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: white;
}

.mb-board th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    font-size: 0.9rem;
}

.mb-board td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.mb-board tr:hover {
    background-color: #f8f9fa;
}

.mb-board a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mb-board a:hover {
    color: #005a87;
    text-decoration: underline;
}

.mb-board .mb-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.mb-board .mb-btn:hover {
    background: #218838;
    color: white;
    text-decoration: none;
}

/* Mangboard 반응형 디자인 */
@media (max-width: 768px) {
    .mb-board table {
        font-size: 0.9rem;
    }
    
    .mb-board th,
    .mb-board td {
        padding: 0.75rem 0.5rem;
    }
} 