/****************************************************************/
  /* 박스 스타일 */
  .refresh-box {
    position: fixed;
    top: 80%;
    left: 30px;
    transform: translateY(-50%);
    
    width: 116px;
    height: 116px;
    padding: 10px;
    
    display: flex;
    flex-direction: column; /* 세로 방향 정렬 */
    align-items: center;
    justify-content: center;
    gap: 8px; /* 요소 간 간격 조절 */

    font-size: 14px;
    font-weight: bold;
    color: white;
    
    background: rgba(255, 255, 255, 0.2); /* 글라스 효과 */
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    animation: float 1s ease-in-out infinite alternate;
    z-index: 3;
}

/* 아이콘 스타일 */
.refresh-box i {
    font-size: 24px; /* 아이콘 크기 */
}

/* 텍스트 스타일 */
.refresh-box p {
    margin: 0;
    font-size: 12px;
    text-align: center;
}

/* 위아래 부드러운 애니메이션 */
@keyframes float {
    0% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(-30%);
    }
}

@media screen and (max-width: 1024px) {
    .refresh-box {
        position: fixed;
        top: 85%;
        left: 30px;       
    }    
  }
  
