.full-container {
  display: flex;       /* 가로 배치 */
  gap: 20px;           /* 두 박스 사이 간격 */
/*   justify-content: center; 중앙 정렬 */
}

.category-1st {
  width: 300px;
  height: 100vh;
  border: 2px solid #333;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 30px;
  box-sizing: border-box;
}

/* 세로 버튼 스타일 */
.category-1st > button {
  width: 250px;
  height: 40px;
  font-size: 16px;
  cursor: pointer;
}

.category-2nd {
  display: none; /* 초기 상태에서는 숨김 */
  width: 225px;
  height: 100vh;
  border: 2px solid #333;
  background-color: #f0f0f0;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 10px;
  padding-left: 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

.category-2nd.active {
  display: flex;   /* 활성화될 때 보이도록 */
}

/* 세로 버튼 스타일 */
.category-2nd > button {
  width: 200px;
  height: 100px;
  font-size: 16px;
  cursor: pointer;

}

/* 한 줄 버튼 스타일 */
.login-buttons {
  width: 250px;
  gap: 20px;      /* 버튼 사이 간격 */
  margin-top: 20px; /* 위 버튼들과 거리 */
  margin-left: 5px;
}

.login-buttons button {
  width: 120px;      /* 두 버튼이 같은 너비 */
  height: 40px;
  font-size: 16px;
  cursor: pointer;
}

/* ===== 미리보기 이미지 ===== */
.preview-image {
  position: absolute;
  display: none;
  width: 800px;
  border-radius: 8px;
  border: 2px solid #aaa;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: opacity 0.2s ease;
}
