#map {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.place-item{
padding:12px;
border-bottom:1px solid #eee;
cursor:pointer;
}

.place-item:hover{
background:#f6f6f6;
}

.place-title{
font-weight:bold;
font-size:16px;
}

.place-address{
font-size:13px;
color:#666;
}


.maplog-write-wrap{max-width:1100px;margin:30px auto;padding:0 15px 40px;}
.maplog-form-card{background:#fff;border:1px solid #e5e7eb;border-radius:24px;padding:28px;box-shadow:0 10px 30px rgba(15,23,42,.05);}
.maplog-form-head{margin-bottom:24px;}
.maplog-form-head h3{margin:0 0 8px;font-size:30px;font-weight:800;color:#111827;}
.maplog-form-head p{margin:0;color:#6b7280;font-size:14px;line-height:1.6;}

.maplog-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;}
.maplog-field{display:flex;flex-direction:column;gap:8px;}
.maplog-field.full{grid-column:1 / -1;}
.maplog-field label{font-size:14px;font-weight:800;color:#111827;}
.maplog-address-row{display:flex;gap:10px;}
.maplog-help{margin:0;font-size:12px;color:#6b7280;}

.btn-find-point{
    height:46px;
    padding:0 16px;
    border:0;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    white-space:nowrap;
}

#maplogWriteMap{
    width:100%;
    height:520px;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    background:#f3f4f6;
}

.maplog-preview-box{margin-top:24px;}
.maplog-preview-head{margin-bottom:10px;font-size:16px;font-weight:800;color:#111827;}

.maplog-btns{margin-top:24px;display:flex;gap:10px;justify-content:flex-end;}
.btn_cancel,.btn_submit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:120px;
    height:46px;
    padding:0 18px;
    border-radius:12px;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
    border:0;
    cursor:pointer;
}
.btn_cancel{background:#eef2f7;color:#111827;}
.btn_submit{background:#111827;color:#fff;}

@media (max-width: 768px){
    .maplog-form-grid{grid-template-columns:1fr;}
    .maplog-address-row{flex-direction:column;}
    #maplogWriteMap{height:380px;}
}

.place-write-wrap {
    margin: 20px 0;
    text-align: right;
}

.place-write-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffe066, #ffd43b);
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 212, 59, 0.4);
    transition: all 0.2s ease;
}

.place-write-btn:hover {
    background: linear-gradient(135deg, #ffd43b, #fab005);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 212, 59, 0.6);
}

.place-write-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 6px rgba(255, 212, 59, 0.3);
}

.maplog-view-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.maplog-place-summary {
    margin: 24px 0;
}

.maplog-sec-title {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 800;
    color: #222;
}

.maplog-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.maplog-info-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
}

.maplog-info-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 700;
}

.maplog-info-value {
    font-size: 15px;
    color: #222;
    line-height: 1.6;
    word-break: break-word;
}

.maplog-admin-box {
    margin-top: 18px;
    border: 2px solid #ffd43b;
    background: #fffbea;
    border-radius: 16px;
    overflow: hidden;
}

.maplog-admin-head {
    background: #ffd43b;
    color: #333;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 18px;
}

.maplog-admin-body {
    padding: 18px;
}

.maplog-admin-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.maplog-admin-label {
    min-width: 60px;
    font-weight: 800;
    color: #444;
}

.maplog-admin-value {
    flex: 1;
    color: #222;
    word-break: break-all;
}

.maplog-admin-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.maplog-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.maplog-btn-edit {
    background: #2563eb;
    color: #fff;
}

.maplog-btn-del {
    background: #dc2626;
    color: #fff;
}

.maplog-btn-write {
    background: #f59e0b;
    color: #fff;
}

.maplog-btn-list {
    background: #374151;
    color: #fff;
}

.maplog-map-section {
    margin: 24px 0 30px;
}

#maplogViewMap {
    width: 100%;
    height: 520px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.maplog-content-section {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .maplog-info-grid {
        grid-template-columns: 1fr;
    }

    #maplogViewMap {
        height: 380px;
    }
}

/* =========================================
   basic_map_log view.skin.php Àü¿ë CSS
========================================= */

/* ÀüÃ¼ º¸±â ¿µ¿ª */
.maplog-view-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px 40px;
}

/* »ó´Ü Á¦¸ñ */
.maplog-view-header {
    margin-bottom: 20px;
}

#bo_v_title {
    margin: 0 0 16px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.35;
    color: #111827;
}

.bo_v_cate {
    display: inline-block;
    margin-right: 8px;
    padding: 5px 10px;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    vertical-align: middle;
}

/* »ó´Ü ÀÛ¼ºÀÚ Á¤º¸ ¹Ú½º */
.maplog-top-info,
#bo_v_info {
    margin-bottom: 24px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

#bo_v_info h2 {
    display: none;
}

.profile_info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.pf_img,
.pf_img img,
.pf_img span {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 72px;
}

.profile_info_ct {
    flex: 1;
    min-width: 220px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.profile_info_ct strong {
    color: #111827;
    font-weight: 800;
}

.profile_info_ct a {
    color: #111827;
    text-decoration: none;
}

.if_date {
    display: inline-block;
    margin-left: 10px;
}

/* »ó´Ü ¹öÆ° ¿µ¿ª */
#bo_v_top {
    margin-top: 18px;
    position: relative;
}

.btn_bo_user.bo_v_com {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.btn_bo_user.bo_v_com li {
    list-style: none;
    position: relative;
}

/* view »ó´Ü ¹öÆ° */
#bo_v_top .btn,
#bo_v_top .btn_b01,
#bo_v_top .btn_b02,
#bo_v_top .btn_b03,
#bo_v_top a.btn,
#bo_v_top a.btn_b01,
#bo_v_top a.btn_b02,
#bo_v_top a.btn_b03,
#bo_v_top button.btn,
#bo_v_top button.btn_b01,
#bo_v_top button.btn_b02,
#bo_v_top button.btn_b03 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 10px 16px;
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: all .18s ease;
}

#bo_v_top .btn_b01,
#bo_v_top a.btn_b01,
#bo_v_top button.btn_b01,
#bo_v_top .btn {
    background: #2563eb;
    color: #fff;
}

#bo_v_top .btn_b01:hover,
#bo_v_top a.btn_b01:hover,
#bo_v_top button.btn_b01:hover,
#bo_v_top .btn:hover {
    background: #1d4ed8;
    color: #fff;
}

#bo_v_top .btn_more_opt {
    min-width: 42px;
    padding-left: 12px;
    padding-right: 12px;
}

/* ¼öÁ¤/»èÁ¦/º¹»ç/ÀÌµ¿ µå·Ó´Ù¿î */
.more_opt.is_view_btn {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 170px;
    padding: 8px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
    z-index: 50;
}

.more_opt.is_view_btn li {
    list-style: none;
}

.more_opt.is_view_btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.more_opt.is_view_btn a:hover {
    background: #f3f4f6;
}

/* Àå¼Ò Á¤º¸ */
.maplog-place-summary {
    margin: 26px 0 24px;
}

.maplog-sec-title {
    margin: 0 0 14px;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
}

.maplog-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.maplog-info-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.maplog-info-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 800;
}

.maplog-info-value {
    font-size: 16px;
    color: #111827;
    line-height: 1.7;
    word-break: break-word;
}

/* °ü¸®ÀÚ Àü¿ë ¹Ú½º */
.maplog-admin-box {
    margin-top: 18px;
    border: 2px solid #ffd43b;
    background: #fffbea;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 212, 59, 0.15);
}

.maplog-admin-head {
    background: #ffd43b;
    color: #333;
    font-size: 18px;
    font-weight: 800;
    padding: 15px 18px;
}

.maplog-admin-body {
    padding: 18px;
}

.maplog-admin-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.maplog-admin-label {
    min-width: 60px;
    font-weight: 800;
    color: #444;
}

.maplog-admin-value {
    flex: 1;
    color: #222;
    word-break: break-all;
}

.maplog-admin-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.maplog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all .18s ease;
}

.maplog-btn-edit {
    background: #2563eb;
    color: #fff;
}

.maplog-btn-del {
    background: #dc2626;
    color: #fff;
}

.maplog-btn-write {
    background: #f59e0b;
    color: #fff;
}

.maplog-btn-list {
    background: #374151;
    color: #fff;
}

.maplog-btn-edit:hover,
.maplog-btn-del:hover,
.maplog-btn-write:hover,
.maplog-btn-list:hover {
    opacity: .92;
    color: #fff;
}

/* Áöµµ À§Ä¡ */
.maplog-map-section {
    margin: 24px 0 30px;
}

#maplogViewMap {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* º»¹® */
.maplog-content-section,
#bo_v_atc {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

#bo_v_atc_title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

#bo_v_share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

#bo_v_img {
    margin-bottom: 18px;
}

#bo_v_img img {
    border-radius: 14px;
}

#bo_v_con {
    font-size: 16px;
    line-height: 1.8;
    color: #1f2937;
    word-break: break-word;
}

/* Ã·ºÎÆÄÀÏ / °ü·Ã¸µÅ© */
#bo_v_file,
#bo_v_link {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

#bo_v_file h2,
#bo_v_link h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

#bo_v_file ul,
#bo_v_link ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#bo_v_file li,
#bo_v_link li {
    padding: 14px 0;
    border-top: 1px solid #f1f5f9;
    list-style: none;
}

#bo_v_file li:first-child,
#bo_v_link li:first-child {
    border-top: 0;
}

#bo_v_file a,
#bo_v_link a {
    color: #111827;
    text-decoration: none;
}

.bo_v_file_cnt,
.bo_v_link_cnt {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

/* ÀÌÀü±Û / ´ÙÀ½±Û */
.bo_v_nb {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.bo_v_nb li {
    list-style: none;
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
}

.bo_v_nb li:first-child {
    border-top: 0;
}

.bo_v_nb .nb_tit {
    display: inline-block;
    min-width: 78px;
    margin-right: 12px;
    font-weight: 800;
    color: #2563eb;
}

.bo_v_nb a {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.bo_v_nb .nb_date {
    display: inline-block;
    margin-left: 12px;
    color: #6b7280;
    font-size: 13px;
}

/* ´ñ±Û ¿µ¿ª */
#bo_vc {
    margin-top: 24px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

#bo_vc h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

/* ¹ÝÀÀÇü */
@media (max-width: 768px) {
    .maplog-view-wrap {
        padding: 16px 12px 32px;
    }

    #bo_v_title {
        font-size: 28px;
    }

    .profile_info {
        align-items: flex-start;
    }

    .btn_bo_user.bo_v_com {
        gap: 8px;
    }

    #bo_v_top .btn,
    #bo_v_top .btn_b01,
    #bo_v_top .btn_b02,
    #bo_v_top .btn_b03,
    #bo_v_top a.btn,
    #bo_v_top a.btn_b01,
    #bo_v_top a.btn_b02,
    #bo_v_top a.btn_b03,
    #bo_v_top button.btn,
    #bo_v_top button.btn_b01,
    #bo_v_top button.btn_b02,
    #bo_v_top button.btn_b03,
    .maplog-btn {
        min-height: 40px;
        padding: 9px 13px;
        font-size: 13px;
    }

    .maplog-info-grid {
        grid-template-columns: 1fr;
    }

    #maplogViewMap {
        height: 380px;
    }

    #bo_v_atc,
    #bo_v_file,
    #bo_v_link,
    #bo_vc,
    #bo_v_info {
        padding: 18px;
        border-radius: 16px;
    }

    .bo_v_nb li {
        padding: 14px 16px;
    }
}