.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.room-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.room-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}


/* ===== DETAIL: room-detail-scope ===== */
.room-detail-scope .room-header {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.room-detail-scope .room-thumb img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* 탭 네비게이션 */
.room-detail-scope .room-tabs {
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.room-detail-scope .tab-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  overflow: hidden;
}
.room-detail-scope .tab-nav li {
  text-align: center;
  padding: 14px 0;
  cursor: pointer;
  background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
  font-weight: 500;
  color: #333;
  transition: all 0.25s ease-in-out;
  border: 1px solid #ddd;
}
.room-detail-scope .tab-nav li:hover {
  background: linear-gradient(135deg, #e9f3fb, #dcecf9);
  color: #0073aa;
}
.room-detail-scope .tab-nav li.active {
  background: linear-gradient(135deg, #0073aa, #005c88);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1;
}
.room-detail-scope .tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 0 0 12px 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  min-height: 400px;
  animation: fadeIn .3s ease-in-out;
}
.room-detail-scope .tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== 테이블 ===== */
.room-detail-scope .room-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}
.room-detail-scope .room-table th,
.room-detail-scope .room-table td {
  border: 1px solid #eee;
  padding: 10px 14px;
  text-align: center;
}
.room-detail-scope .room-table th {
  background: #f7f9fb;
  font-weight: 600;
  color: #0073aa;
}
.room-detail-scope .room-table tr:hover {
  background: #f0f7ff;
}
.room-detail-scope .room-table img {
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
