@charset "utf-8";

/* 인기 게시물 위젯 스타일 */
.popular-posts-container {
    max-width: 100%;
    margin: 16px auto;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.tab-button {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: background 0.3s ease;
}

.tab-button.active {
    color: #5850EC;
    font-weight: bold;
    background: #fff;
    border-bottom: 2px solid #5850EC;
}

.posts-list {
    padding: 15px;
}

.post-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.post-rank {
    font-size: 18px;
    font-weight: bold;
    color: #5850EC;
    width: 30px;
}

.post-title {
    flex: 1;
    color: #333;
    text-decoration: none;
    margin-left: 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-title:hover {
    color: #5850EC;
}

.post-comments {
    color: #5850EC;
    font-weight: bold;
    margin-left: 10px;
}

.empty-posts {
    text-align: center;
    padding: 20px;
    color: #888;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .tab-button {
        padding: 10px;
        font-size: 14px;
    }
    
    .post-rank {
        font-size: 12px;
        width: 25px;
    }
    
    .post-title {
        font-size: 14px;
    }
}
