/* skeleton-ui.css - 로딩 중 콘텐츠 스켈레톤 UI */
.skeleton-loader {
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
    border-radius: 4px;
  }
  
  .skeleton-loader::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
  }
  
  @keyframes shimmer {
    100% {
      transform: translateX(100%);
    }
  }
  
  /* 로케이션 카드 스켈레톤 */
  .skeleton-card {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .skeleton-card-img {
    width: 100%;
    height: 200px;
  }
  
  .skeleton-card-body {
    padding: 1rem;
  }
  
  .skeleton-title {
    height: 24px;
    margin-bottom: 0.75rem;
    width: 80%;
  }
  
  .skeleton-text {
    height: 16px;
    margin-bottom: 0.5rem;
  }
  
  .skeleton-text.small {
    height: 12px;
    width: 60%;
  }
  
  .skeleton-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
  }
  
  .skeleton-footer {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
  }
  
  .skeleton-button {
    height: 32px;
    width: 80px;
    border-radius: 4px;
  }
  
  /* 목록 아이템 스켈레톤 */
  .skeleton-list-item {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
  }
  
  /* 댓글 스켈레톤 */
  .skeleton-comment {
    display: flex;
    margin-bottom: 1rem;
  }
  
  .skeleton-comment-content {
    flex: 1;
    margin-left: 0.5rem;
  }
  
  /* 프로필 스켈레톤 */
  .skeleton-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .skeleton-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 1rem;
  }
  
  .skeleton-profile-info {
    flex: 1;
  }
  
  .skeleton-stats {
    display: flex;
    justify-content: space-around;
    margin: 1rem 0;
  }
  
  .skeleton-stat-item {
    text-align: center;
  }
  
  .skeleton-stat-value {
    height: 24px;
    width: 40px;
    margin: 0 auto 0.5rem;
  }
  
  .skeleton-stat-label {
    height: 16px;
    width: 60px;
  }
  
  /* 포스트/게시글 스켈레톤 */
  .skeleton-post-header {
    margin-bottom: 1rem;
  }
  
  .skeleton-post-content {
    margin-bottom: 1.5rem;
  }
  
  .skeleton-post-content .skeleton-text {
    margin-bottom: 0.75rem;
  }
  
  /* 상세 페이지 컨텐츠 스켈레톤 */
  .skeleton-detail-image {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
  }
  
  .skeleton-map {
    width: 100%;
    height: 250px;
    margin: 1rem 0;
  }