body {
    font-family: Arial, sans-serif;
    background:#fff;
    margin:0;
}

/* 🔥 상단 메뉴 */
.top-nav {
    width:990px;
    margin: 30px auto;
	background: #a67676;
    padding: 15px;
	text-align:left;
}

.top-nav a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    font-weight: bold;
}

.top-nav a:hover {
    text-decoration: underline;
}

/* 컨텐츠 영역 */
.admin-container {
    width: 990px;
    margin: 30px auto;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
}

.admin-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.textarea{
	height:100px;
}
.price-table {
    table-layout: fixed;
    width: 100%;
}

.price-table th,
.price-table td {
    width: calc(100% / 9);
    text-align: center;
}
.price-table th {
    white-space: nowrap;
}
.price-table input {
    text-align: right;
	width:100%
	box-sizing: border-box;
}

.price-box {
    display: flex;
    gap: 15px;
}

.season {
    background: #f9f9f9;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    min-width: 90px;
}
.season:hover {
    background: #eef6ff;
}
.season div {
    text-align: right;
}
.season strong {
    display: block;
    margin-bottom: 5px;
    color: #007bff;
}

/* 테이블 */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
	table-layout: fixed;
}

th{    
	border: 1px solid #ddd;
    padding: 10px;
	text-align:center;
	font-size:13px;
	font-weight:bold;
	color:#8c8c8c;
}

td {
    border: 1px solid #ddd;
    padding: 10px;
	text-align:center;
	font-size:12px;
	font-weight:normal;
	color:#888;
}

th {
    background: #f0f0f0;
    text-align: center;
	white-space: nowrap;
}

/* input */
input, textarea {
    width: 100%;
    padding: 6px;
    box-sizing: border-box;
	text-align: left;
}

input.price-input {
    text-align: right;
}

/* 버튼 */
.btn-wrap{
	text-align: right;
}

button {
    margin-top: 20px;
    padding: 12px 25px;
    background: #8e8e8e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
	text-align:center;
}

button:hover {
    background: #0056b3;
	text-align: center;
}
.room-edit-page table {
}
.room-edit-page input {
text-align:center;
}
.room-price-page table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.room-price-page th,
.room-price-page td {
    padding: 6px;
    border: 1px solid #ddd;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	text-align:center;
}

/* 컬럼별 width */
.room-price-page th:nth-child(1),
.room-price-page td:nth-child(1) { width: 80px; }

.room-price-page th:nth-child(2),
.room-price-page td:nth-child(2) { width: 80px; }

/* input */
.room-price-page input {
    width: 100%;
    box-sizing: border-box;
	text-align: right;
}

.room-price-page .people-cell input {
    width: 30px;
}

/* Chrome, Safari, Edge */
.room-price-page input[type="number"]::-webkit-outer-spin-button,
.room-price-page input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.room-price-page input[type="number"] {
    -moz-appearance: textfield;
}

.admin-top {
    width: 100%;
    background: #2c3e50;
}

.admin-top-inner {
    width: 990px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* 왼쪽 메뉴 */
.admin-top .menu {
    display: flex;
    gap: 15px;
}

.admin-top .menu a {
    color: #fff;
    text-decoration: none;
}

/* 오른쪽 사용자 정보 */
.admin-top .right {
    color: #fff;
    font-size: 14px;
}

.admin-top .right a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}
.pagination {
    margin-top: 20px;
    text-align: center; /* 👉 가운데 정렬 핵심 */
}

.pagination a {
    display: inline-block;
    padding: 6px 12px;
    margin: 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background: #333;
    color: #fff;
}

.long-text {
    width: 100%;
    min-height: 250px;

    padding: 12px;
    box-sizing: border-box;

    resize: vertical;
    line-height: 1.7;
}

/* =========================
   TOP MENU
========================= */

.admin-top{
    width:100%;
    background:#1f2937;
    color:#fff;
}

.admin-top-inner{
    width:1400px;
    margin:0 auto;
    height:60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.admin-top .menu{
    display:flex;
    align-items:center;
}

.admin-top .menu a{
    color:#cbd5e1;
    text-decoration:none;

    padding:0 22px;
    height:60px;

    display:flex;
    align-items:center;

    font-size:15px;
    font-weight:500;

    transition:0.2s;
}

.admin-top .menu a:hover{
    background:#111827;
    color:#fff;
}

.admin-top .menu a.active{
    background:#111827;
    color:#fff;
    font-weight:700;
}

.admin-top .right{
    font-size:13px;
    color:#d1d5db;
}

.admin-top .right a{
    color:#fff;
    text-decoration:none;
}


/* =========================
   SUB MENU
========================= */

.admin-submenu{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ddd;
}

.admin-submenu-inner{
    width:1400px;
    margin:0 auto;

    display:flex;
    align-items:center;
}

.admin-submenu a{
    display:flex;
    align-items:center;

    height:52px;
    padding:0 18px;

    text-decoration:none;

    color:#666;
    font-size:14px;

    border-bottom:2px solid transparent;

    transition:0.2s;
}

.admin-submenu a:hover{
    color:#111;
}

.admin-submenu a.active{
    color:#111;
    font-weight:700;
    border-bottom:2px solid #111;
}

.admin_tab {
    display:flex;
    gap:10px;
    margin-bottom:20px;
}

.admin_tab a {
    display:inline-block;
    padding:10px 18px;
    background:#a9a9a9;
    border-radius:4px;
    text-decoration:none;
    color:#333;
}

.admin_tab a.active {
    background:#a9a9a9;
    color:#fff;
}

.price-page h2 {
    margin: 40px 0 15px;
    font-size: 24px;
}

.price-page .info-box {
    border: 1px solid #ddd;
    padding: 25px;
    line-height: 1.8;
    background: #fff;
    white-space: normal;
}

.price-page .refund-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
	background-color:#fff;
}

.price-page .refund-table th,
.price-page .refund-table td {
    border: 1px solid #ddd;
    padding: 14px;
    text-align: center;
}

.price-page .refund-table th {
    color: #fff;
	background-color:#3a3a3a;
}
.price-page h4 {
    margin: 35px 0 12px;
}

.info-box {
    border: 1px solid #ddd;
    padding: 22px 25px;
    background: #fff;
}

.bullet-item {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.bullet-item::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 9px;
}

.refund-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.refund-table th,
.refund-table td {
    border: 1px solid #ddd;
    padding: 13px;
    text-align: center;
}

.refund-table th {
    background: #f5f5f5;
}

.guide-title {
    background: #3a3a3a;
    color: #fff;
    padding: 14px 20px;
    margin: 35px 0 12px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.price-page .guide-title:first-child {
    margin-top: 0 !important;
	}

#sub_wrap {
    width: 1100px;
    margin: 0 auto;
    overflow: visible;
	background-color:#fff;
	padding-top: 0
}

.reservation-wrap {
    width: 100%;
    min-height: 1000px;
    overflow: visible;
    clear: both;
}

.reservation-wrap iframe {
    display: block;
    width: 100%;
    height: 950px;
    border: 0;
    overflow: auto;
}
/* =========================
   관리자 버튼 공통
========================= */

.action-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
}

.btn {
    display: inline-block;

    min-width: 60px;

    padding: 7px 12px;

    border-radius: 4px;

    font-size: 13px;
    font-weight: 600;

    text-align: center;
    text-decoration: none;

    cursor: pointer;

    border: none;

    transition: all 0.2s ease;
}

/* 수정 */
.btn-edit {
    background: #4b5563;
    color: #fff;
}

.btn-edit:hover {
    background: #374151;
}

/* 삭제 */
.btn-delete {
    background: #dc2626;
    color: #fff;
}

.btn-delete:hover {
    background: #b91c1c;
}

.season-date {
    display: block;
    font-size: 11px;
    font-weight: normal;
    color: #888;
    margin-top: 4px;
}