/* =============================================
   PORTFOLIO.CSS — 포트폴리오 미리보기 바 
   ============================================= */

.preview-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 40px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
}

.preview-bar__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
}

.preview-bar__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e53935c7;
  flex-shrink: 0;
  vertical-align: middle;
}

.preview-bar__back {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.preview-bar__back:hover {
  color: #ffffff;
}

/*nav 위치 보정 */
.nav {
  top: 40px;
}
