/* 서둔투게더 페이지 공통 스타일 */
* { font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important; }

body {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #F8F7F4;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 반응형 */
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
  .pc-only { display: block !important; }
  body { padding-top: 120px; background: #f5f3f0; }
}
@media (max-width: 767px) {
  .mobile-only { display: block !important; }
  .pc-only { display: none !important; }
}

/* PC 컨텐츠 컨테이너 */
@media (min-width: 768px) {
  .container,
  .content-container {
    max-width: 1000px !important;
    width: 1000px !important;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(93, 78, 61, 0.15);
    margin: 40px auto 32px auto !important;
    padding: 32px;
    min-height: auto !important;
  }
  .dept-header,
  .together-header {
    display: none;
  }
  .header {
    border-radius: 20px 20px 0 0;
  }
}

/* 모바일 컨텐츠 컨테이너 */
@media (max-width: 767px) {
  .container,
  .content-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    padding-bottom: 80px;
  }
  body {
    padding-top: 56px;
  }
}

/* 공통 헤더 스타일 */
.header {
  background: linear-gradient(135deg, #8B7355 0%, #6B5344 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.back-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s;
  background: none;
  border: none;
  color: white;
}

.back-btn:hover {
  background: rgba(255,255,255,0.1);
}

.header-title {
  font-size: 18px;
  font-weight: bold;
}

/* 하단 네비게이션 숨김 (PC) */
@media (min-width: 768px) {
  .bottom-nav {
    display: none !important;
  }
}

/* 플로팅 추가 버튼 위치 조정 */
@media (min-width: 768px) {
  .add-btn,
  .fab-btn {
    right: calc(50% - 450px) !important;
    bottom: 40px !important;
  }
}

@media (max-width: 767px) {
  .add-btn,
  .fab-btn {
    right: 20px !important;
    bottom: 90px !important;
  }
}
